import { CSSProperties } from "react" export default (props?:{ title?:string, contentbg?:string, children?:any, style?:CSSProperties })=> { return <>
{props.title? {props.title} :null} {props.children}
}