importReactfrom'react';
importExampleComponentfrom'./ExampleComponent';
importExampleStateComponentfrom'./ExampleStateComponent';
exportdefault () => (
<div><ExampleComponent>This is the example component</ExampleComponent><ExampleStateComponent /></div>
);