mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
18 lines
377 B
JavaScript
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);
|