add category btns

This commit is contained in:
msosic97
2022-03-14 12:14:03 +01:00
parent 5d1e7ab14f
commit 992cb1756a
5 changed files with 26 additions and 7 deletions

View 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