Skip to content

Instantly share code, notes, and snippets.

@saurabhnemade
Created May 4, 2020 06:12
Show Gist options
  • Save saurabhnemade/08958332880af505fcd6099289a9371c to your computer and use it in GitHub Desktop.
Save saurabhnemade/08958332880af505fcd6099289a9371c to your computer and use it in GitHub Desktop.
import React from 'react';
import logo from './logo.svg';
import './App.css';
import { Button } from 'ui-components';
import { formatDate } from 'common-utils';
function App() {
return (
<div className="App">
<div>
Sample product
<Button label="A product button" />
<span>
Today is: {formatDate(new Date())}
</span>
</div>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment