Files
react.dev/examples/update-on-async-rendering/enabling-strict-mode.js
2018-02-07 09:21:26 -08:00

22 lines
363 B
JavaScript

import React from 'react';
// highlight-next-line
const {StrictMode} = React;
function ExampleApplication() {
return (
<div>
<Header />
{/* highlight-next-line */}
<StrictMode>
<>
<RouteOne />
<RouteTwo />
</>
{/* highlight-next-line */}
</StrictMode>
<Footer />
</div>
);
}