mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-30 08:00:08 +02:00

Apply minor upgrades to Bootstrap 5 and react-bootstrap GitOrigin-RevId: eb013f38515ebd4b9572d139f00841aca344e3c6
15 lines
296 B
TypeScript
15 lines
296 B
TypeScript
import { Card } from 'react-bootstrap'
|
|
import { FC } from 'react'
|
|
|
|
const OLCard: FC<React.PropsWithChildren<{ className?: string }>> = ({
|
|
children,
|
|
className,
|
|
}) => {
|
|
return (
|
|
<Card className={className}>
|
|
<Card.Body>{children}</Card.Body>
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
export default OLCard
|