import React from 'react';
import './index.css'
const a = (props: any) => {
return (
<>
{
'@ifr' === props?.title?.split(/\s/g)?.[0] ? (
{
window.postMessage({
type: 'pushContainer',
component: 'Webview',
value: {
path: props?.href,
name: '网页'
}
}, '*')
}}>{props?.children ? props?.children[0] : ''}
) : (
{props?.children ? props?.children[0] : ''}
)
}
>
);
};
export default a;