99.10.0 • Published 4 years ago

@temporg/ui-pages v99.10.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 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 @temporg/ui-pages

Usage

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

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