mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-08 22:57:20 +02:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
import React from 'react';
|
|
import styles from './styles.css';
|
|
|
|
export default props => {
|
|
return (
|
|
<button className={styles.square} onClick={props.onClick}>
|
|
{props.value}
|
|
</button>
|
|
);
|
|
};
|