w-lab-app/src/components/domains/dashboard/sections/HoroscopeSection/HoroscopeSection.tsx
2025-10-09 00:46:50 +02:00

13 lines
319 B
TypeScript

import { Section } from "@/components/ui";
import { Horoscope } from "@/components/widgets";
import styles from "./HoroscopeSection.module.scss";
export default function HoroscopeSection() {
return (
<Section title="Horoscope" contentClassName={styles.sectionContent}>
<Horoscope />
</Section>
);
}