diff --git a/src/App.tsx b/src/App.tsx index 315af52..dab50c5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,5 +1,7 @@ +import { PageFlightsQuota } from './pages' + function App() { - return

test

+ return } export default App diff --git a/src/pages/PageFlightsQuota.tsx b/src/pages/PageFlightsQuota.tsx new file mode 100644 index 0000000..b023d07 --- /dev/null +++ b/src/pages/PageFlightsQuota.tsx @@ -0,0 +1,3 @@ +export function PageFlightsQuota() { + return

PageFlightsQuota

+} diff --git a/src/pages/index.ts b/src/pages/index.ts new file mode 100644 index 0000000..b7bd979 --- /dev/null +++ b/src/pages/index.ts @@ -0,0 +1 @@ +export * from './PageFlightsQuota'