0.1.13 • Published 4 years ago

appliedx v0.1.13

Weekly downloads
8
License
MIT
Repository
github
Last release
4 years ago

appliedx

Made with create-react-library

NPM JavaScript Style Guide

Install

npm install --save appliedx

Usage

import React, { Component } from 'react'

import MyComponent from 'appliedx'
import 'appliedx/dist/index.css'
export const Default = () => {
  const delay = text("Delay", 1000);
  const includeDays = boolean("Include Days", false);
  const countFontSize = number("Count Font Size (rems)", 2);
  const expiryTime = object("expiryTime", {
    days: 0,
    hours: 15,
    minutes: 34,
    seconds: 55
  });
  const align = select(
    "Align",
    ["flex-start", "flex-end", "center", "baseline", "stretch"],
    "center"
  );
  return (
    <CountdownTimer
      delay={delay}
      countFontSize={countFontSize}
      includeDays={includeDays}
      expiryTime={expiryTime}
      align={align}
    />
  );
};

License

MIT © aamirbhat

0.1.13

4 years ago

0.1.12

4 years ago

0.1.11

4 years ago

0.1.10

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.9

4 years ago

0.1.5

4 years ago

0.1.2

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago