1.0.2 • Published 7 years ago

@amajor/widget-mail-tracker v1.0.2

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
7 years ago

Mail Tracker Widget

A simple ReactJS dashboard-type widget that displays emails received, stamped, and uploaded.

Getting Started

From inside of your React project directory, run

npm install @amajor/widget-mail-tracker

Once installed, include it in your application by importing the file and inserting the component with your desired props.

import React, { Component } from 'react';
import MailTracker from '@amajor/widget-mail-tracker';

class App extends Component {
  render() {
    return (
      <div className="App">

        <header className="App-header">
          <h1 className="App-title">Your App</h1>
          <h2 className="App-title">With the mail tracker below.</h2>
        </header>

        <MailTracker
          numberReceived={103}
          numberStamped={101}
          numberUploaded={99}
        />

      </div>
    );
  }
}

export default App;

Configure

This component accepts the following properties:

  • numberReceived (number) - for example "103"
  • numberStamped (number) - for example "101"
  • numberUploaded (number) - for example "99"

When entered in, the component will flow horizontally, or if given less space, will collapse into a column. We use the grid from Bootstrap to manage this.

Horizontal Layout

Vertical Layout

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago