1.1.0 • Published 7 years ago

react-fullcanvas v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

<FullCanvas/> · npm version  npm.io PRs Welcome

A simple component for fully fill a given container. It's suitable for both of react and react redux projects.

Table of Contents

Install

yarn add react-fullcanvas

Usage

react-fullcanvas was built with classnames, radium.

ES6 and CommonJS builds are available with each distribution. For example:

import React from 'react';
import ReactDOM from 'react-dom';
import FullCanvas from 'react-fullcanvas';
import { RouterAvatar, Src } from 'react-simple-avatar';
import svgAvatar from './assets/img/avatar.svg';

ReactDOM.render(
  <FullCanvas className='example'>
    <RouterAvatar
     to='#'
     size= { 88 }>
      <Src from={ svgAvatar }/>
    </RouterAvatar>
  </FullCanvas>
);

Or,

var React        = require('react');
var ReactDOM     = require('react-dom');
var SimpleAvatar = require('react-simple-avatar');
var FullCanvas   = require('react-fullcanvas');
var svgAvatar    = require('./assets/img/avatar.svg');

ReactDOM.render(
  <FullCanvas className='example'>
    <SimpleAvatar.RouterAvatar
     to='#'
     size= { 88 }>
      <SimpleAvatar.Src from={ svgAvatar }/>
    </SimpleAvatar.RouterAvatar>
  </FullCanvas>
);

Contribute

Use GitHub issues for requests.

See the contribute files!

PRs accepted.

Todo

  • choose a more accurate name for the component
  • make it can receive micro data (in the discussion...)
  • make it can receive dataset (in the discussion...)
  • add doc for introducing how to build
  • add doc for introducing how to preview the given example in the local
  • add doc for introducing the inspiration(or motivation) for creating this component
  • provide schematic
  • provide roadmap
  • provide release notes
  • provide changelog
  • provide online preview
  • provide a place for discussion
  • show the conventions that project followed
  • provide help center(or recipes...)
  • add supported browsers
  • provide umd build
  • add Thanks section for some help from articles & developers
  • optimize docs
  • optimize github page for <FullCanvas/>

License

MIT © Shen Weizhong.

1.1.0

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago