Add SVG Sidebar

This commit is contained in:
Siklos 2022-07-31 15:37:01 +02:00
parent 7e74be6d3b
commit 17aa2b0961
3 changed files with 45 additions and 11 deletions

View file

@ -10,7 +10,7 @@ interface ISidebarProps {
export default class Sidebar extends React.Component<ISidebarProps> {
public render() {
const listElements = this.props.componentOptions.map(componentOption =>
<button className='hover:bg-blue-600 transition-all sidebar-row' key='{componentOption.Type}'>
<button className='hover:bg-blue-600 transition-all sidebar-row' key={componentOption.Type}>
{componentOption.Type}
</button>
);