web: added the base for the web project
This commit is contained in:
9
apps/web/src/components/Card.tsx
Normal file
9
apps/web/src/components/Card.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { type HtmlProps } from "@/types";
|
||||
|
||||
export function Card({children}: HtmlProps<HTMLDivElement>) {
|
||||
return (
|
||||
<div className="border border-border rounded">
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user