forked from FormidableLabs/prism-react-renderer
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
35 lines (29 loc) · 941 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import React from 'react'
import { Wrapper, Pre, LineNo } from './styles'
import Highlight, { defaultProps } from 'prism-react-renderer'
import theme from 'prism-react-renderer/themes/oceanicNext'
const exampleCode = `
(function someDemo() {
var test = "Hello World!";
console.log(test);
})();
return () => <App />;
`.trim()
const App = () => (
<Wrapper>
<h1>Welcome to prism-react-renderer!</h1>
<Highlight {...defaultProps} code={exampleCode} language="jsx" theme={theme}>
{({ className, style, tokens, getLineProps, getTokenProps }) => (
<Pre className={className} style={style}>
{tokens.map((line, i) => (
<div {...getLineProps({ line, key: i })}>
<LineNo>{i + 1}</LineNo>
{line.map((token, key) => <span {...getTokenProps({ token, key })} />)}
</div>
))}
</Pre>
)}
</Highlight>
</Wrapper>
)
export default App;