mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 09:22:01 +08:00
7 lines
116 B
JavaScript
7 lines
116 B
JavaScript
import React from 'react';
|
|
|
|
export default ({children, show = true}) => (
|
|
show ? <div>{children}</div> : null
|
|
);
|
|
|