export * from '@digigov/react-core/BackLinkBase'; import React from 'react'; import { BackLinkBase, BackLinkBaseProps, } from '@digigov/react-core/BackLinkBase'; import { Link } from '@digigov/ui/navigation/Link'; export interface BackLinkProps extends BackLinkBaseProps {} export const BackLink = React.forwardRef( function BackLink({ children, ...props }, ref) { return ( {children} ); } ); export default BackLink;