Vulcan/packages/customization-demo/lib/components/MyCustomPage.jsx

17 lines
300 B
React
Raw Normal View History

/*
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 (
<div>
<h1>Welcome To My Custom Page!</h1>
<p>Nice to meet you.</p>
</div>
)
}
export default MyCustomPage;