mirror of
https://github.com/kou029w/quot.git
synced 2025-01-19 00:18:09 +00:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
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>
|
|
);
|
|
};
|