mirror of https://github.com/grafana/grafana.git
10 lines
158 B
TypeScript
10 lines
158 B
TypeScript
|
|
import { getFormStyles } from './getFormStyles';
|
||
|
|
import { Label } from './Label';
|
||
|
|
|
||
|
|
const Forms = {
|
||
|
|
getFormStyles,
|
||
|
|
Label: Label,
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Forms;
|