mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
11 lines
196 B
TypeScript
11 lines
196 B
TypeScript
import React from 'react';
|
|
import './Button.css';
|
|
|
|
export const Button = props => {
|
|
return (
|
|
<button className="Button" onClick={props.onClick}>
|
|
{props.children}
|
|
</button>
|
|
);
|
|
};
|