1
0
Fork 0
mirror of https://github.com/kou029w/quot.git synced 2025-01-19 16:38:06 +00:00
quot/app/views/components/card.tsx

11 lines
241 B
TypeScript
Raw Normal View History

2022-08-24 17:43:32 +09:00
import "./card.css";
export default (props: { id: number; title: string; text: string }) => {
return (
<article class="card">
<h2>{props.title}</h2>
<p>{props.text.slice(props.title.length + 1)}</p>
</article>
);
};