1.0.1 • Published 4 months ago

@typedbootstrap/admin-components v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

Admin Components

A collection of reusable React components for creating admin interfaces.

License

Licensed under MIT. Totally free for private or commercial projects.

Getting Started

Install components

npm i @typedbootstrap/admin-styles @typedbootstrap/admin-components

Include styles

import '@typedbootstrap/admin-styles/dist/css/styles.css';

Import components

import React from 'react';
import { DashboardLayout } from '@typedbootstrap/admin-components';

export default (props) => {
    return ( 
        <DashboardLayout
            topnav={<div>Topnav</div>}
            sidenav={<div>Sidenav</div>}
            footer={<div>Footer</div>}>
            Hello world!
        </DashboardLayout>
    );
};
1.0.1

4 months ago

1.0.0

4 months ago

0.3.0

4 months ago

0.2.0

4 months ago

0.3.1

4 months ago

0.1.0

5 months ago