1
0
Fork 0
mirror of https://github.com/kou029w/quot.git synced 2025-01-19 08:28:09 +00:00
quot/app/src/components/cards.tsx
2022-08-24 17:43:32 +09:00

6 lines
162 B
TypeScript

import type { JSX } from "solid-js";
import "./cards.css";
export default (props: { children: JSX.Element }) => (
<div class="cards">{props.children}</div>
);