Files
lume/src/components/note/single.tsx
2023-03-16 10:06:12 +07:00

12 lines
339 B
TypeScript

import { Content } from '@components/note/content';
import { memo } from 'react';
export const Single = memo(function Single({ event }: { event: any }) {
return (
<div className="flex h-min min-h-min w-full cursor-pointer select-text flex-col border-b border-zinc-800 py-4 px-3">
<Content data={event} />
</div>
);
});