@jswork/antbf-search-box
v1.0.6
Published
Table filter for search box.
Downloads
15
Readme
antbf-search-box
Table filter for search box.
installation
npm install -S @jswork/antbf-search-box
properties
| Name | Type | Required | Default | Description | | --------- | ------ | -------- | ------- | ------------------------------------- | | className | string | false | - | The extended className for component. | | value | object | false | null | Default value. | | onChange | func | false | noop | The change handler. |
usage
- import css
@import "~@jswork/boilerplate-react-component/dist/style.css";
// or use sass
@import "~@jswork/boilerplate-react-component/dist/style.scss";
// customize your styles:
$boilerplate-react-component-options: ()
- import js
import React from 'react';
import AntbfSearchBox from '../@jswork/boilerplate-react-component';
import styled from 'styled-components';
const Container = styled.div`
width: 80%;
margin: 30px auto 0;
`;
export default (props: any) => {
return (
<Container>
<AntbfSearchBox />
</Container>
);
};
license
Code released under the MIT license.