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