mirror of
https://github.com/alecthomas/chroma.git
synced 2025-02-21 19:06:18 +02:00
11 lines
236 B
Plaintext
11 lines
236 B
Plaintext
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import App from './component/App';
|
|
import './index.css';
|
|
import 'github-fork-ribbon-css/gh-fork-ribbon.css';
|
|
|
|
ReactDOM.render(
|
|
<App />,
|
|
document.getElementById('root')
|
|
);
|