Status interface (#471)

* Add status interface

* Add some tests

* Set active state of list item and add disabled
This commit is contained in:
Rijk van Zanten
2020-04-24 15:31:06 -04:00
committed by GitHub
parent bc0fbaa897
commit 41d77cde65
7 changed files with 261 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import InterfaceDropdown from './dropdown/';
import InterfaceDropdownMultiselect from './dropdown-multiselect/';
import InterfaceRadioButtons from './radio-buttons';
import InterfaceCheckboxes from './checkboxes';
import InterfaceStatus from './status';
export const interfaces = [
InterfaceTextInput,
@@ -22,6 +23,7 @@ export const interfaces = [
InterfaceDropdownMultiselect,
InterfaceRadioButtons,
InterfaceCheckboxes,
InterfaceStatus,
];
export default interfaces;