mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
interface Props {
|
|
symbol: string;
|
|
}
|
|
|
|
const EscapingCharacter: React.FC<Props> = ({ symbol }: Props) => {
|
|
return <span>{symbol}</span>;
|
|
};
|
|
|
|
export default EscapingCharacter;
|