// App is a component displaying another component
function App () {
return (
<MyComponent />
)
}
function MyComponent () {
// component body
// rendered elements
<div>Hello, I'm a component!</div>