12 lines
217 B
TypeScript
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>;
|
|
}
|