cf-component-tabsdeprecated

Cloudflare Tabs Component

Usage no npm install needed!

<script type="module">
  import cfComponentTabs from 'https://cdn.skypack.dev/cf-component-tabs';
</script>

README

cf-component-tabs

Cloudflare Tabs Component

Installation

Installation with yarn is recommended


$ yarn add cf-component-tabs

Usage

import React from 'react';
import {
  Tabs,
  TabsItemUnstyled,
  TabsItemTheme,
  TabsPanel
} from 'cf-component-tabs';
import { applyTheme } from 'cf-style-container';

const Tab = applyTheme(TabsItemUnstyled, TabsItemTheme, () => ({
  background: '#FFFFF0'
}));

class TabsComponent extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      active: 'one'
    };
  }

  handleTabChange(id) {
    this.setState({ active: id });
  }

  render() {
    return (
      <Tabs
        active={this.state.active}
        tabs={[
          { id: 'one', label: 'Tab One' },
          {
            id: 'two',
            label: 'Tab Two: Custom Header',
            component: Tab
          },
          { id: 'three', label: 'Tab Three' }
        ]}
        onChange={this.handleTabChange.bind(this)}
      >
        <TabsPanel id="one">
          <h1>Tab One</h1>
        </TabsPanel>

        <TabsPanel id="two">
          <h1>Tab Two</h1>
        </TabsPanel>

        <TabsPanel id="three">
          <h1>Tab Three</h1>
        </TabsPanel>
      </Tabs>
    );
  }
}

export default TabsComponent;