mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
17 lines
300 B
React
17 lines
300 B
React
![]() |
/*
|
||
|
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;
|