mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 09:23:16 +01:00
12 lines
272 B
TypeScript
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>
|
|
)
|
|
}
|