mirror of
https://github.com/usememos/memos.git
synced 2025-12-19 15:19:17 +08:00
9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
interface Props {
|
|
content: string;
|
|
}
|
|
|
|
const Superscript: React.FC<Props> = ({ content }: Props) => {
|
|
return <sup>{content}</sup>;
|
|
};
|
|
|
|
export default Superscript;
|