Inside the components subfolder, create a file and name it Quote.js
The Quote component will contain every other components, so we can import only the Quote component to the app.js file
import Nav from "./Nav";
import QuoteBody from "./QuoteBody";
import Footer from "./Footer";
const Quote = () => {
return (
<div>
<Nav />
<QuoteBody />
<Footer />
</div>
);
};
export default Quote;