Files
y/client/src/Post.tsx
Stepan Usatiuk d98906a23f posts prettier
2023-12-16 20:36:22 +01:00

17 lines
312 B
TypeScript

import "./Post.scss";
export function Post({
text,
createdDate,
}: {
text: string;
createdDate: string;
}) {
return (
<div className={"post"}>
<span className={"text"}>{text}</span>
<span className={"createdDate"}>{createdDate}</span>
</div>
);
}