personal-website/keystatic/content-components/FootnoteView.tsx

12 lines
217 B
TypeScript

import type { PropsWithChildren } from 'react';
export interface Props {
value: {
content: string;
};
}
export default function FootnoteView() {
return <sup style={{ cursor: 'pointer' }}>footnote</sup>;
}