index.js 185 B

12345678910111213141516
  1. import Select from './select';
  2. import Add from './add';
  3. import InsertForm from './InsertForm';
  4. let Tools = {
  5. Select,
  6. Add,
  7. InsertForm
  8. }
  9. export {
  10. Tools,
  11. Select,
  12. Add,
  13. InsertForm
  14. }