Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mock incident data #192

Merged
merged 8 commits into from
Oct 15, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
export mock data
  • Loading branch information
acharliekelly committed Oct 14, 2021
commit 2e024827808858f97ef871e35b9cad490d323b1f
7 changes: 5 additions & 2 deletions frontend/models/mock-data/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import { mockData, tableColumns } from "./mock-table-data"
import { savedResultsData } from "./saved-results-data"
import { savedSearchData } from "./saved-search-data"
import * as users from "./users.json"
import users from "./users.json"
import mockSaved from "./saved-results.json"
import mockIncident from "./incidents.json"
import mockIncidentG from "./grammy.json"

export { mockData, savedResultsData, savedSearchData, tableColumns, users }
export { mockData, mockIncident, mockIncidentG, mockSaved, savedResultsData, savedSearchData, tableColumns, users }