diff --git a/src/components/atoms/headings/Heading.tsx b/src/components/atoms/headings/Heading.tsx index b7ee441..c2727d7 100644 --- a/src/components/atoms/headings/Heading.tsx +++ b/src/components/atoms/headings/Heading.tsx @@ -3,6 +3,8 @@ import * as React from 'react'; import { useTranslation } from 'react-i18next'; +import './headings.css'; + interface HeadingProps { title: string; } @@ -10,7 +12,11 @@ interface HeadingProps { const Heading = ({ title }: HeadingProps) => { const { t } = useTranslation(); - return