import * as React from 'react'; const Away = ({ href, children }: { href: string; children: React.ReactChild }) => ( {children} ); export default Away;