handle Chips and Chip Values

This commit is contained in:
Bilal
2020-09-04 06:02:33 +03:00
parent 99e8b9c6f2
commit d4c998fa1a
9 changed files with 421 additions and 22 deletions

14
client/src/chips/Chips.js Normal file
View File

@@ -0,0 +1,14 @@
import React from 'react';
import { withRouter } from 'react-router-dom';
import AddChip from "./AddChip";
import ListChips from "./ListChips";
const Chips = (props) => (
<div className='container'>
<AddChip />
<ListChips />
</div>
);
export default withRouter(Chips);