Card container components for a cleaner dashboard
This commit is contained in:
9
src/components/CardContainers/CardContainers.tsx
Normal file
9
src/components/CardContainers/CardContainers.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import style from "./style.module.css";
|
||||
|
||||
export function CardRow({ children }) {
|
||||
return <div className={style.cardRow}>{children}</div>;
|
||||
}
|
||||
|
||||
export function CardColumn({ children }) {
|
||||
return <div className={style.cardColumn}>{children}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user