Created
December 30, 2020 03:40
-
-
Save jaysoo/778e15c64c787135a1c9a61af465a866 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { SharedUi } from '@my-org/shared-ui'; | |
export const Index = () => { | |
return ( | |
<div className="app"> | |
<header className="flex"> | |
<Logo width="75" height="75" /> | |
<h1>Welcome to myblog!</h1> | |
</header> | |
<main> | |
<SharedUi/> | |
... | |
</main> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment