Skip to content

Instantly share code, notes, and snippets.

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 velotiotech/1c6f2e470b2402c1b375c6127e4ae65a to your computer and use it in GitHub Desktop.
Save velotiotech/1c6f2e470b2402c1b375c6127e4ae65a 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