Files
bigcapital/client/src/components/MenuItemLabel.js
2020-06-17 22:06:33 +02:00

7 lines
143 B
JavaScript

import React from 'react';
export default function MenuItemLabel({
text
}) {
return (<span class="bp3-menu-item-label">{ text }</span>);
}