This commit is contained in:
frits000000
2020-11-25 17:48:56 +01:00
parent 85bd80ed4b
commit 29909ff541
40 changed files with 18044 additions and 0 deletions
@@ -0,0 +1,23 @@
import React from 'react';
class Dropdown extends React.Component {
constructor(props){
super(props)
}
render() {
return (
<div className="col-md-4">
<a class="AP-Btn-Primary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{this.props.Title}
</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="#">{this.props.Category}</a>
</div>
</div>
)
}
}
export default Dropdown;