import React from 'react' import styles from './tooltip.module.css' export default function Tooltip({ children, text, opened }) { return (
{text()} {opened && {children}}
) }