UNPKG

hbp-quickfire

Version:

A library of useful user-interface components built with React on top of React Bootstrap and MobX

27 lines (26 loc) 1.18 kB
/* * Copyright (c) Human Brain Project * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import "babel-polyfill"; /* Export React Components */ export { default as Form } from "./Components/Form"; export { default as Field } from "./Components/Field"; export { default as SingleField } from "./Components/SingleField"; export { default as Tree } from "./Components/Tree"; export { default as ActionIcon } from "./Components/ActionIcon"; export { default as GenericList } from "./Components/GenericList"; export { default as Slider } from "./Components/Slider"; export { default as Confirm } from "./Components/Confirm"; export { default as Alert } from "./Components/Alert"; export { components as Components } from "./Components/Field"; /* Export usable Stores */ /** * Define stores namespace. * @namespace Stores */ export { default as FormStore } from "./Stores/FormStore"; export { default as optionsStore } from "./Stores/OptionsStore"; export { default as ClipboardStore } from "./Stores/ClipboardStore";