mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
17 lines
No EOL
300 B
JavaScript
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; |