add category btns
This commit is contained in:
19
kivi-cars/src/components/CategoryBtns/categorybtns.js
Normal file
19
kivi-cars/src/components/CategoryBtns/categorybtns.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import './categorybtns.css'
|
||||
import StandardBtn from '../Button/StandardBtn'
|
||||
|
||||
var auto = 'AUTO';
|
||||
var motor = 'MOTOR';
|
||||
var kamion = 'KAMION';
|
||||
|
||||
const CategoryBtns = (props) => {
|
||||
return (
|
||||
<div className='category-btns'>
|
||||
<StandardBtn title={auto}/>
|
||||
<StandardBtn title={motor}/>
|
||||
<StandardBtn title={kamion}/>
|
||||
</div>
|
||||
)
|
||||
|
||||
}
|
||||
|
||||
export default CategoryBtns
|
||||
Reference in New Issue
Block a user