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