cv/src/app/page.tsx

16 lines
290 B
TypeScript

'use client'
import Button from 'react-bootstrap/Button';
import Alert from 'react-bootstrap/Alert';
export default function Home() {
return (
<main>
<Alert variant='info'>
This Bootstrap theme works.
</Alert>
<Button>Yes!</Button>
</main>
)
}