mirror of
https://git.unlock-music.dev/um/um-react.git
synced 2025-05-23 16:27:41 +08:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
import React from 'react';
|
|
|
|
export function FilePathBlock({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<pre className="whitespace-pre-wrap break-all">
|
|
<code>{children}</code>
|
|
</pre>
|
|
);
|
|
}
|