mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 15:11:41 +08:00
7 lines
157 B
JavaScript
7 lines
157 B
JavaScript
import React from 'react';
|
|
import styles from './PopupMenu.css';
|
|
|
|
export default ({children}) => (
|
|
<span className={styles.popupMenu}>{children}</span>
|
|
);
|