mirror of
https://github.com/wassname/talk.git
synced 2026-08-05 13:30:26 +08:00
11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
import React from 'react';
|
|
import styles from './style.css';
|
|
|
|
export default (props) => (
|
|
<div className={styles.Respect} key={props.key}>
|
|
{console.log(props)}
|
|
<button onClick={props.actions.clickButton}>Respect</button>
|
|
</div>
|
|
);
|
|
|