CMU Coding Bootcamp
at main 17 lines 466 B view raw
1// Import the FormExample component 2import FormExample from "../components/FormExample/FormExample"; 3 4// Define the FormExamplePage functional component 5function FormExamplePage() { 6 // Render the component JSX 7 return ( 8 // Container div for the FormExample component 9 <div> 10 {/* Render the FormExample component */} 11 <FormExample /> 12 </div> 13 ); 14} 15 16// Export the FormExamplePage component as the default export 17export default FormExamplePage;