mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
10 lines
264 B
JavaScript
10 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>;
|
||
|
|
}
|