한국공항공사(KAC) - Front End
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
622 B

import { Card, CardHeader, CardBody, CardTitle, CardText, CardLink } from 'reactstrap'
const SecondPage = () => {
return (
<Card>
<CardHeader>
<CardTitle>Create Awesome 🙌</CardTitle>
</CardHeader>
<CardBody>
<CardText>This is your second page.</CardText>
<CardText>
Chocolate sesame snaps pie carrot cake pastry pie lollipop muffin. Carrot cake dragée chupa chups jujubes.
Macaroon liquorice cookie wafer tart marzipan bonbon. Gingerbread jelly-o dragée chocolate.
</CardText>
</CardBody>
</Card>
)
}
export default SecondPage