import React from 'react'; import { Field } from 'redux-form'; import remcalc from 'remcalc'; import { Row, Col, FormGroup, Input, FormLabel, Button, Divider } from 'joyent-ui-toolkit'; export const Toolbar = ({ searchLabel = 'Filter', searchPlaceholder = '', searchable = true, actionLabel = 'Create', actionable = true, onActionClick }) => ( {searchLabel} ); export default ({ handleSubmit, ...rest }) => (
);