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 {
symbol: string;
}
const EscapingCharacter: React.FC<Props> = ({ symbol }: Props) => {
return <span>{symbol}</span>;
};
export default EscapingCharacter;