diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-07-18 15:24:37 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-07-18 15:24:37 -0500 |
commit | 1d00f3b9840003601175d5394af34b29222db4e3 (patch) | |
tree | f835e910d5f11b84ce2403e307caea080c34ab79 /src/App.web.tsx | |
parent | de87ec17d1673855fdfe2ccd125d734591969dd4 (diff) | |
download | voidsky-1d00f3b9840003601175d5394af34b29222db4e3.tar.zst |
Add mock API and reorg code for clarity
Diffstat (limited to 'src/App.web.tsx')
-rw-r--r-- | src/App.web.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx index 2fadf993f..34b6ac6cb 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -1,6 +1,6 @@ import React, {useState, useEffect} from 'react' import {RootStore, setupState, RootStoreProvider} from './state' -import * as Routes from './routes' +import * as Routes from './view/routes' function App() { const [rootStore, setRootStore] = useState<RootStore | undefined>(undefined) |