Created
December 11, 2020 14:31
-
-
Save jaysoo/05fe499964b5e864e6dd868695125f8e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import './about.css'; | |
import Title from '../components/title'; | |
/* eslint-disable-next-line */ | |
export interface AboutProps { | |
} | |
export const About = (props: AboutProps) => { | |
return ( | |
<div> | |
<Title/> | |
</div> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment