base
This commit is contained in:
parent
1009c3a94f
commit
5384f173cd
|
|
@ -1,6 +1,6 @@
|
||||||
// 'use client'
|
// 'use client'
|
||||||
|
|
||||||
import { Button } from "@nextui-org/button"
|
// import { Button } from "@nextui-org/button"
|
||||||
|
|
||||||
// import { Box } from '@chakra-ui/react'
|
// import { Box } from '@chakra-ui/react'
|
||||||
|
|
||||||
|
|
@ -16,10 +16,17 @@ import { Button } from "@nextui-org/button"
|
||||||
// )
|
// )
|
||||||
// }
|
// }
|
||||||
|
|
||||||
export default function About() {
|
import { Container, Row, Col, Button } from 'react-bootstrap'
|
||||||
|
|
||||||
|
export default function MyPage() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<Container>
|
||||||
<Button>Click me</Button>
|
<Row>
|
||||||
</div>
|
<Col>
|
||||||
|
<h1>Welcome to My Page</h1>
|
||||||
|
<Button variant="primary">Click Me</Button>
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
</Container>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue