1.0.18 • Published 4 years ago

auto-components-id v1.0.18

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

Auto Components Id

=== How to use === App.js File

...other your import code...
import Lib from 'auto-components-id/dist';

...other your code...
  return (
    <Lib>
        ...other your code...
    </Lib>
  );
...other your code...

=== If Use Redux === App.js File

...other your import code...
import Lib from 'auto-components-id/dist';

=== This Example Import Reducers */
/* Import Reducer */
import reducers from './redux/reducers';

...other your code...
  return (
    <Lib customRedux={reducers}>
        ...other your code...
    </Lib>
  );
...other your code...

And this example Reducers

import R_Test from './R_Test';

const reducers = {
    test: R_Test
}

export default reducers;

=== How to use Components === App.js File

...other your import code...
import Lib from 'auto-components-id/dist';

// Import Components
import {
  Control,
  Form
} from 'auto-components-id/dist/components/form';

/* Import style Antd */
import "antd/dist/antd.css";

...other your code...
  return (
    <Lib>
        <Form
          nameForm="test"
        >
          <Control 
            name="no"
            type="text"

            placeholder="No.."
          />
        </Form>
    </Lib>
  );
...other your code...
1.0.18

4 years ago

1.0.17

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago