schyma
Version:
JSON Schemas Visualizer React component
13 lines • 542 B
JavaScript
import React from 'react';
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
import { prism } from 'react-syntax-highlighter/dist/cjs/styles/prism';
const CodeComponent = ({ children }) => {
return (React.createElement(SyntaxHighlighter, { language: 'json', style: prism, customStyle: {
margin: 0,
borderRadius: 0,
background: '#ffffff',
fontSize: '12px',
}, showLineNumbers: true }, children));
};
export default CodeComponent;
//# sourceMappingURL=Code.js.map