Skip to content

Instantly share code, notes, and snippets.

@jaysoo
Created December 11, 2020 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaysoo/05fe499964b5e864e6dd868695125f8e to your computer and use it in GitHub Desktop.
Save jaysoo/05fe499964b5e864e6dd868695125f8e to your computer and use it in GitHub Desktop.
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