mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import type { ReactNode } from 'react';
|
|
|
|
export function FilePathBlock({ children }: { children: ReactNode }) {
|
|
return (
|
|
<pre className="whitespace-pre-wrap break-all">
|
|
<code>{children}</code>
|
|
</pre>
|
|
);
|
|
}
|