import React from 'react'; import './Alert.less'; import { Alert } from 'antd'; import micromark from 'micromark' export default (props: any) => { const { title, children, ...others } = props; console.log({children}); return (
{title && (

{title}

)} {typeof children === 'string' ?
: children}
) };