13 lines
207 B
JavaScript
13 lines
207 B
JavaScript
import React from 'react';
|
|
|
|
const Home = () => {
|
|
return (
|
|
<div>
|
|
<h2>Welcome to the Home Page</h2>
|
|
<p>This is the main landing page of your SPA.</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|