20 lines
410 B
JavaScript
20 lines
410 B
JavaScript
|
import './App.css';
|
||
|
import 'antd/dist/antd.css';
|
||
|
import React from 'react';
|
||
|
import { Layout } from 'antd';
|
||
|
const {Footer, Content } = Layout;
|
||
|
|
||
|
function About(){
|
||
|
return(
|
||
|
<div className="about">
|
||
|
<Layout>
|
||
|
<Content>
|
||
|
<h2>About Page</h2>
|
||
|
</Content>
|
||
|
<Footer>Footer</Footer>
|
||
|
</Layout>
|
||
|
</div>
|
||
|
|
||
|
);
|
||
|
}
|
||
|
export default About;
|