Skip to content

Instantly share code, notes, and snippets.

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