import React from 'react' const InfoBox = ({ children }: { children: React.ReactNode }) => (
{children}
) export { InfoBox }