1.0.18 • Published 3 years ago

auto-components-id v1.0.18

Weekly downloads
-
License
ISC
Repository
github
Last release
3 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

3 years ago

1.0.17

3 years ago

1.0.16

3 years ago

1.0.15

3 years ago

1.0.14

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago