mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-10 23:02:56 +02:00
17 lines
389 B
JavaScript
17 lines
389 B
JavaScript
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import React from 'react';
|
|
import styles from './styles.css';
|
|
|
|
export default props => {
|
|
return (
|
|
<button className={styles.square} onClick={props.onClick}>
|
|
{props.value}
|
|
</button>
|
|
);
|
|
};
|