Files
MermsPanelReactJS/src/component/CardContainer.jsx
T
2024-12-05 11:57:05 +01:00

8 lines
227 B
React

import React, { Children } from 'react'
export default function CardContainer({children}) {
return (
<div className='w-full h-full py-4 flex flex-col gap-1 rounded-sm shadow-shadow_round bg-white'>{children}</div>
)
}