Skip to content

Commit

Permalink
Flavor Update: Solid
Browse files Browse the repository at this point in the history
remove screenthree, and remove usage of globals. and collection
  • Loading branch information
mbflores committed Aug 28, 2024
1 parent 1b0cd6e commit 71b4d90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 90 deletions.
5 changes: 2 additions & 3 deletions examples/solidJs/src/app.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "./globals";


import { Route, StackRouter } from "./router";
import { ScreenOne } from "./routes/screen-one";
import { ScreenThree } from "./routes/screen-three";
import { ScreenTwo } from "./routes/screen-two";
import { Home } from '~/home'
import { ActionBar } from '~/ui/actionbar'
Expand All @@ -12,7 +12,6 @@ const App = () => {
<StackRouter initialRouteName="Home">
<Route name="Home" component={Home} />
<Route name="ActionBar" component={ActionBar} />
<Route name="ScreenThree" co mponent={ScreenThree} />
</StackRouter>
);
};
Expand Down
87 changes: 0 additions & 87 deletions examples/solidJs/src/routes/screen-three.tsx

This file was deleted.

0 comments on commit 71b4d90

Please sign in to comment.