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

19 lines
375 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';
import { registerComponent } from 'meteor/nova:core';
const MyCustomPage = () => {
return (
<div>
<h1>Welcome To My Custom Page!</h1>
<p>Nice to meet you.</p>
</div>
)
}
registerComponent('MyCustomPage', MyCustomPage);