mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
interface Props {
|
|
content: string;
|
|
}
|
|
|
|
const Code: React.FC<Props> = ({ content }: Props) => {
|
|
return <code className="inline break-all px-1 rounded bg-gray-100 dark:bg-zinc-700">{content}</code>;
|
|
};
|
|
|
|
export default Code;
|