mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 20:23:08 +00:00
22 lines
363 B
JavaScript
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>
|
|
);
|
|
}
|