w-aura/src/components/BreathPage/index.tsx
2023-08-25 04:02:10 +04:00

14 lines
253 B
TypeScript

import styles from './styles.module.css'
import BreathCircle from '../BreathCircle'
function BreathPage(): JSX.Element {
return (
<section className={`${styles.page} page`}>
<BreathCircle />
</section>
)
}
export default BreathPage