security-checklist/components/Button/Button.js
2019-01-12 17:52:43 -08:00

9 lines
264 B
JavaScript

// @flow
import React from 'react';
import * as Styled from './style';
import type { ButtonProps } from './types';
export default function Button(props: ButtonProps) {
const { children } = props;
return <Styled.Button {...props}>{children}</Styled.Button>;
}