/* A new custom page just for our app. Browse to http://localhost:3000/my-custom-route to see it. */ import React from 'react'; const MyCustomPage = () => { return (

Welcome To My Custom Page!

Nice to meet you.

) } export default MyCustomPage;