1.0.12 • Published 2 years ago
master-ui-components v1.0.12
Master UI Components
This library contains React UI components and util functions. It has written in Typescript for React projects.
📦 Install
yarn add master-ui-components
or
npm i master-ui-components
🔨 Usage
import React from 'react';
import { Button, getDateFormats } from 'master-ui-components';
const nowDateFormats = getDateFormats({ timestamp: new Date().getTime(), lang: "en" })
const App = () => (
<>
<Button text="Press Me"/>
<div>
{"Date: " + nowDateFormats.dateFormat01}
</div>
</>
);