aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links/nav-link.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/links/nav-link.tsx')
-rw-r--r--src/components/atoms/links/nav-link.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/atoms/links/nav-link.tsx b/src/components/atoms/links/nav-link.tsx
index 66ee570..109529c 100644
--- a/src/components/atoms/links/nav-link.tsx
+++ b/src/components/atoms/links/nav-link.tsx
@@ -22,7 +22,7 @@ export type NavLinkProps = {
*
* Render a navigation link.
*/
-const NavLink: FC<NavLinkProps> = ({ href, label, logo }) => {
+export const NavLink: FC<NavLinkProps> = ({ href, label, logo }) => {
return (
<Link className={styles.link} href={href}>
{logo}
@@ -30,5 +30,3 @@ const NavLink: FC<NavLinkProps> = ({ href, label, logo }) => {
</Link>
);
};
-
-export default NavLink;