mirror of
https://github.com/usememos/memos.git
synced 2025-12-17 22:28:52 +08:00
9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
interface Props {
|
|
symbol: string;
|
|
}
|
|
|
|
const EscapingCharacter: React.FC<Props> = ({ symbol }: Props) => {
|
|
return <span>{symbol}</span>;
|
|
};
|
|
|
|
export default EscapingCharacter;
|