implement frontend for creating tags

This commit is contained in:
Konstantin Schaper
2020-11-27 08:49:10 +01:00
parent 280f3e005e
commit 7895da0a2a
7 changed files with 203 additions and 108 deletions

View File

@@ -94,9 +94,11 @@ class Button extends React.Component<Props> {
<span className="icon is-medium">
<Icon name={icon} color="inherit" />
</span>
<span>
{label} {children}
</span>
{(label || children) && (
<span>
{label} {children}
</span>
)}
</button>
);
}