Logs.SqlSnippetCode.tsx 204 B

12345
  1. const SqlSnippetCode: React.FC<React.PropsWithChildren> = ({ children }) => (
  2. <pre className="text-foreground text-sm wrap-break-word py-4 px-3 w-full">{children}</pre>
  3. )
  4. export default SqlSnippetCode