asi-calculator/app/page.tsx
2024-03-29 14:06:40 +00:00

12 lines
272 B
TypeScript

import { Prices } from '@/features/Prices'
import styles from './page.module.css'
export default function Home() {
return (
<main className={styles.main}>
<h1 className={styles.title}>Should I Buy OCEAN or AGIX or FET?</h1>
<Prices />
</main>
)
}