import React from 'react'; import Flex from 'styled-flex-component'; import { If, Then } from 'react-if'; import { Margin } from 'styled-components-spacing'; import { Link } from 'react-router-dom'; import { Field } from 'redux-form'; import { FormGroup, Input, FormLabel, Button } from 'joyent-ui-toolkit'; export const Toolbar = ({ searchLabel = 'Filter', searchPlaceholder = '', searchable = true, actionLabel = 'Create', actionable = true, onActionClick, actionTo }) => ( {searchLabel} ); export default ({ handleSubmit, ...rest }) => (
);