Skip to content

Commit

Permalink
feat: add aeon page
Browse files Browse the repository at this point in the history
  • Loading branch information
athevinha committed Sep 25, 2024
1 parent 2c185fa commit a0d76bb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
12 changes: 12 additions & 0 deletions src/pages/AeonPaymentPage/AeonPaymentPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import {List} from '@telegram-apps/telegram-ui';
import type {FC} from 'react';


export const AeonPaymentPage: FC = () => {

return (
<List>
Hello Aeon
</List>
);
};
11 changes: 8 additions & 3 deletions src/pages/IndexPage/IndexPage.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
import {type FC} from "react";


import {AeonPaymentPage} from "../AeonPaymentPage/AeonPaymentPage";
import {InitDataPage} from "../InitDataPage/InitDataPage";
import {LaunchParamsPage} from "../LaunchParamsPage/LaunchParamsPage";
import {ThemeParamsPage} from "../ThemeParamsPage/ThemeParamsPage";
import "./IndexPage.css";
export const IndexPage: FC = () => {

return (
<div>
Hello worlds
<AeonPaymentPage/>
<InitDataPage />
<LaunchParamsPage />
<ThemeParamsPage />
</div>
);
};

0 comments on commit a0d76bb

Please sign in to comment.