Skip to content

Commit

Permalink
refactor: Remove unused pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheraff committed Jun 2, 2024
1 parent 77186ce commit 25416f3
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 48 deletions.
15 changes: 0 additions & 15 deletions src/pages/fifou/index.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions src/pages/other/Titi.tsx

This file was deleted.

17 changes: 0 additions & 17 deletions src/pages/other/index.tsx

This file was deleted.

14 changes: 1 addition & 13 deletions src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* eslint-disable */
import { lazy } from "react"

export type Routes = "paint-worklet" | "other" | "lightning" | "fifou"
export type Routes = "paint-worklet" | "lightning"

export type RouteMeta = {
title: string
Expand All @@ -20,22 +20,10 @@ export const ROUTES = {
title: 'Paint Worklet'
},
},
"other": {
Component: lazy(() => import("./pages/other/index.tsx")),
meta: {
title: 'Other'
},
},
"lightning": {
Component: lazy(() => import("./pages/lightning/index.tsx")),
meta: {
title: 'Lightning'
},
},
"fifou": {
Component: lazy(() => import("./pages/fifou/index.tsx")),
meta: {
title: 'Fifou'
},
}
} as const satisfies Record<Routes, Route>

0 comments on commit 25416f3

Please sign in to comment.