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/9d7f41ce9d551dfb6e0aaa760699a22a to your computer and use it in GitHub Desktop.
Save jaysoo/9d7f41ce9d551dfb6e0aaa760699a22a 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