jsketcher/modules/ui/components/controls/Label.jsx
2018-01-17 00:06:31 -08:00

8 lines
174 B
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import ls from './Label.less'
export default function Label({children}) {
return <span>{children}</span>
}