Commit Major Implementation now that gitea is setup
This commit is contained in:
13
src/components/contentCard.tsx
Normal file
13
src/components/contentCard.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
interface ContentCardProps {
|
||||
children: React.ReactNode;
|
||||
className?: string;
|
||||
style?: React.CSSProperties;
|
||||
}
|
||||
|
||||
export default function ContentCard({ children, className = "", style }: ContentCardProps) {
|
||||
return (
|
||||
<div className={`contentCard ${className}`} style={style}>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user