11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
import React from 'react';
|
|
import Header from '../../components/header/index';
|
|
|
|
export default function About() {
|
|
return (
|
|
<div>
|
|
<Header />
|
|
<p>This is the about page</p>
|
|
</div>
|
|
);
|
|
} |