@9softstudio/react-breadcrumb

1.0.2 • Public • Published

react-breadcrumb

Install

npm i @9softstudio/react-breadcrumb

Usage

import { Breadcrumb } from '@9softstudio/react-breadcrumb'

export default class App extends Component {
    constructor(props) {
        super(props);
        this.state = {
            level: 3
        };
    }

    render() {
        const items = [];
        items.push({ label: "Level 1", value: 1, });
        items.push({ label: "Level 2", value: 2, });
        items.push({ label: "Level 3", value: 3, });

        return (
        <div>
        <Breadcrumb items={items} value={this.state.level} onChange={(item) => this.setState({level: item.value})}/>
        <div>
            Level : {this.state.level}
        </div>
        </div>
        )
    }
}

License

MIT

/@9softstudio/react-breadcrumb/

    Package Sidebar

    Install

    npm i @9softstudio/react-breadcrumb

    Weekly Downloads

    2

    Version

    1.0.2

    License

    MIT

    Unpacked Size

    70.2 kB

    Total Files

    21

    Last publish

    Collaborators

    • parsonsnguyen
    • phamtung
    • sparta9
    • tuanhn
    • vietquocbui
    • walternexcel