We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b0cd6e commit 71b4d90Copy full SHA for 71b4d90
examples/solidJs/src/app.tsx
@@ -1,7 +1,7 @@
1
-import "./globals";
+
2
3
import { Route, StackRouter } from "./router";
4
import { ScreenOne } from "./routes/screen-one";
-import { ScreenThree } from "./routes/screen-three";
5
import { ScreenTwo } from "./routes/screen-two";
6
import { Home } from '~/home'
7
import { ActionBar } from '~/ui/actionbar'
@@ -12,7 +12,6 @@ const App = () => {
12
<StackRouter initialRouteName="Home">
13
<Route name="Home" component={Home} />
14
<Route name="ActionBar" component={ActionBar} />
15
- <Route name="ScreenThree" co mponent={ScreenThree} />
16
</StackRouter>
17
);
18
};
examples/solidJs/src/routes/screen-three.tsx
0 commit comments