mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: remove component v1 suffix
This commit is contained in:
9
web/src/components/MemoContent/EscapingCharacter.tsx
Normal file
9
web/src/components/MemoContent/EscapingCharacter.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
interface Props {
|
||||
symbol: string;
|
||||
}
|
||||
|
||||
const EscapingCharacter: React.FC<Props> = ({ symbol }: Props) => {
|
||||
return <span>{symbol}</span>;
|
||||
};
|
||||
|
||||
export default EscapingCharacter;
|
Reference in New Issue
Block a user