apeman-react-page

apeman react package for page components

Usage no npm install needed!

<script type="module">
  import apemanReactPage from 'https://cdn.skypack.dev/apeman-react-page';
</script>

README

apeman-react-page

Build Status Code Climate Code Coverage npm Version JS Standard

apeman react package for page components

Installation

$ npm install apeman-react-page --save

Demo

Live demo is hosted on GitHub Pages.

Usage

'use strict'

import React from 'react'
import {ApPage, ApPageContainer} from 'apeman-react-page'

const ExampleComponent = React.createClass({
  render () {
    return (
      <div>
        <ApPageStyle />
        <ApPageContainer id="your-page-container">
          <ApPage>
            Page content
          </ApPage>
        </ApPageContainer>
      </div>
    )
  }
})

Components

ApPageContainer

Props

Name Type Default Description
id string

ApPageStyle

Props

Name Type Default Description
style object {}

ApPage

Props

Name Type Default Description

License

This software is released under the MIT License.

Links