Skip to content

Instantly share code, notes, and snippets.

@jaysoo
Created December 11, 2020 14:30
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/416df0229f066e2f11d791b19f47a81e to your computer and use it in GitHub Desktop.
Save jaysoo/416df0229f066e2f11d791b19f47a81e to your computer and use it in GitHub Desktop.
import React from 'react';
import './title.css';
/* eslint-disable-next-line */
export interface TitleProps {}
export const Title = (props: TitleProps) => {
return (
<div>
<h1>Welcome to Title!</h1>
</div>
);
};
export default Title;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment