mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-09 01:36:51 +01:00
* switch to ts * change web integration test to TS * remove space * lint things * one more lint * Add spaces
13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
import React from 'react';
|
|
import {render} from 'react-dom';
|
|
import App from './App';
|
|
import AppAuto from './AppAuto';
|
|
|
|
render(
|
|
<React.StrictMode>
|
|
<App />
|
|
<AppAuto />
|
|
</React.StrictMode>,
|
|
document.getElementById('root')
|
|
);
|