chore: remove component v1 suffix

This commit is contained in:
Steven
2023-12-22 08:29:02 +08:00
parent 02265a6e1a
commit a3feeceace
44 changed files with 67 additions and 92 deletions

View File

@ -0,0 +1,9 @@
interface Props {
content: string;
}
const Code: React.FC<Props> = ({ content }: Props) => {
return <code>{content}</code>;
};
export default Code;