We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bebb46f commit 8301155Copy full SHA for 8301155
apps/www/src/app/(main)/about/_components/DateLabel/DateLabel.tsx
@@ -1,7 +1,7 @@
1
-export const DateLabel = () => {
+type Props = { children: React.ReactNode };
2
+
3
+export const DateLabel = ({ children }: Props) => {
4
return (
- <div>
- <p>date label</p>
5
- </div>
+ <span className='p-8 font-mono text-sm text-grey-text'>{children}</span>
6
);
7
};
0 commit comments