Skip to content

Instantly share code, notes, and snippets.

@jaysoo
Last active December 30, 2020 03:44
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/ef3dec80f24c2937fba1b83aa3991aa4 to your computer and use it in GitHub Desktop.
Save jaysoo/ef3dec80f24c2937fba1b83aa3991aa4 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