0.1.3 • Published 2 years ago

react-code-samples v0.1.3

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

react-code-samples

usage example:

import {} from 'react-code-samples';
import 'highlight.js/styles/default.css'; // or use another highlight js style

<Snippet
  code={[
    {
      code: `
            console.log("hello world");
            `,
      language: 'javascript',
    },
    {
      code: `
              println!("Hello, world!");
            `,
      language: 'rust',
    },
    {
      code: `
              fmt.Println("Hello, world!")
            `,
      language: 'go',
    },
  ]}
  style={{
    width: '100%',
    height: '100%',
  }}
/>;
0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago