clean css

This commit is contained in:
Romulus21
2023-09-11 08:24:22 +02:00
parent 2dab3b48e1
commit 89c179c7e7
17 changed files with 246 additions and 94 deletions

View File

@@ -0,0 +1,15 @@
import React, {FC} from "react";
import {PropsWithChildren} from "react";
const Card: FC<PropsWithChildren<CardProps>> = ({children, className = ''}) => {
return <div className={`${className} border m-1 rounded py-1 px-2`}>
{children}
</div>
}
export default Card
interface CardProps {
className?: string
}