When i save file index.js vscode format it from
render(
<Provider store = { store }>
{routes}
</Provider>,
document.getElementById('root')
);
to
render( <
Provider store = { store } > { routes } <
/Provider>,
document.getElementById('root')
);
after that the program doesn't work and i have error message
React.Children.only expected to receive a single React element child.
What settings in vscode i need to change to fix this bug?