12 lines
223 B
JavaScript
12 lines
223 B
JavaScript
import DeleteButton from "./DeleteButton";
|
|
import EditableLabel from "./EditableLabel";
|
|
import InlineInput from "./InlineInput";
|
|
|
|
const exports = {
|
|
DeleteButton,
|
|
EditableLabel,
|
|
InlineInput
|
|
};
|
|
|
|
export default exports;
|