Skip to content

Commit 9a9cf91

Browse files
author
stsdc
committed
rm export default
1 parent cd120da commit 9a9cf91

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

client/src/js/view/components/manipulator.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { h } from 'hyperapp';
22
import { throttle } from 'lodash';
33
import { RangeInput } from './elements/range-input';
44

5-
const Manipulator = ({ mode, state, action }) =>
5+
export const Manipulator = ({ mode, state, action }) =>
66
<div class={(mode === 'grab') ? 'manipulatorControl' : 'manipulatorControl manipulatorControl-hide'}>
77
<RangeInput
88
name='AXIS 1'
@@ -20,5 +20,3 @@ const Manipulator = ({ mode, state, action }) =>
2020
</div>;
2121

2222
const setManipulatorThrottled = throttle((axis1, axis2, action) => action.m.setAxes(axis1, axis2), 100, { trailing: false });
23-
24-
export default Manipulator;

0 commit comments

Comments
 (0)