import React, {HTMLAttributes, PropsWithChildren} from 'react' import styles from './SkipToMainContent.module.css' type SkipToMainContentProps = { href: string } & HTMLAttributes export function SkipToMainContent({children, href, ...rest}: PropsWithChildren) { return ( {children} ) }