10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
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>;
|
|
}
|