mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 12:13:11 +00:00
19 lines
337 B
JavaScript
19 lines
337 B
JavaScript
import React from 'react';
|
|
|
|
function ExampleApplication() {
|
|
return (
|
|
<div>
|
|
<Header />
|
|
{/* highlight-next-line */}
|
|
<React.StrictMode>
|
|
<div>
|
|
<ComponentOne />
|
|
<ComponentTwo />
|
|
</div>
|
|
{/* highlight-next-line */}
|
|
</React.StrictMode>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|