10 lines
163 B
JavaScript
10 lines
163 B
JavaScript
import React from 'react';
|
|
|
|
const Button = ({ children, ...props }) => (
|
|
<button type="button" {...props}>
|
|
{children}
|
|
</button>
|
|
);
|
|
|
|
export default Button;
|