Skip to content

Instantly share code, notes, and snippets.

@TheMagoo73
Created February 12, 2021 12:01
Show Gist options
  • Save TheMagoo73/42356388328178b4822380056705423a to your computer and use it in GitHub Desktop.
Save TheMagoo73/42356388328178b4822380056705423a to your computer and use it in GitHub Desktop.
import './App.css';
function App() {
return (
<div className="w-full h-screen mx-auto container flex flex-col items-center justify-center">
<div className="items-center flex flex-col items-center bg-blue-400 px-16 py-12 rounded-lg shadow-xl">
<div className="text-2xl text-white font-extrabold ">React + Tailwind + Storybook</div>
<div className="text-lg text-white font-medium">Much awesome frontend development!</div>
</div>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment