import React from "react"; type Kinder = { children: any; }; const WrapperText = (props: Kinder) => { return <div>{props.children}</div>; }; export default WrapperText;