Vulcan/packages/my-custom-package/lib/components/MyCustomPage.jsx
2016-06-16 11:34:13 +09:00

17 lines
No EOL
300 B
JavaScript

/*
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;