import React from 'react' import styles from './style.module.less' export default function DetialTable(props) { const { title, children, openBtn = false } = props return (
{ title }
{ openBtn &&
{/* */} {/* */} {children}
}
); }