0.1.1 • Published 5 years ago

@rock-kit/ui-pages v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

category: packages

ui-pages

npm  build-status  MIT License  Code of Conduct

Components

The ui-pages package contains the following:

Installation

yarn add @rock-kit/ui-pages

Usage

import React from 'react'
import { Pages } from '@rock-kit/ui-pages'

const MyPages = () => {
  return (
    <Pages activePageIndex={1}>
      <Pages.Page>
        Page One
      </Pages.Page>
      <Pages.Page>
        Page Two
      </Pages.Page>
    </Pages>
  )
}