You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
436 B
18 lines
436 B
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import './index.css';
|
|
import { QueryWrapper } from './lib/reactQuery';
|
|
import { ReactQueryDevtools } from 'react-query/devtools';
|
|
import { Todos } from './todo/Todos';
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<QueryWrapper>
|
|
<>
|
|
<Todos />
|
|
<ReactQueryDevtools />
|
|
</>
|
|
</QueryWrapper>
|
|
</React.StrictMode>,
|
|
document.getElementById('root'),
|
|
);
|