Vulcan/packages/example-customization/lib/components/MyCustomPage.jsx
2017-03-23 16:27:59 +09:00

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