Skip to content

Instantly share code, notes, and snippets.

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