Files
Chart.js/test/integration/react-browser/src/index.tsx
Jacco van den Berg 49b16c9678 Change react integration test to TS (#10605)
* switch to ts

* change web integration test to TS

* remove space

* lint things

* one more lint

* Add spaces
2022-08-18 08:42:40 -04:00

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')
);