React won’t allow you to return more than one element in the return statement. Solution is to wrap it. You can use an empty element. This is called a fragment:
function App() {
return (
<> //...the empty element
<MyComponent />
<input type="my text">
<button>My Button</button>
</>
)
}