diff --git a/app/components/form/ButtonInput.tsx b/app/components/form/ButtonInput.tsx new file mode 100644 index 00000000..230dcadc --- /dev/null +++ b/app/components/form/ButtonInput.tsx @@ -0,0 +1,6 @@ +import * as React from 'react' + +const ButtonInput: React.FunctionComponent = ({ onClick, children }) => + + +export default ButtonInput