Skip to content

Commit

Permalink
PageFlightsQuota
Browse files Browse the repository at this point in the history
  • Loading branch information
azymazy committed Oct 17, 2024
1 parent 41212b6 commit 4e93a98
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { PageFlightsQuota } from './pages'

function App() {
return <h1>test</h1>
return <PageFlightsQuota />
}

export default App
3 changes: 3 additions & 0 deletions src/pages/PageFlightsQuota.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function PageFlightsQuota() {
return <h1>PageFlightsQuota</h1>
}
1 change: 1 addition & 0 deletions src/pages/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './PageFlightsQuota'

0 comments on commit 4e93a98

Please sign in to comment.