WIP trmnl BYOS
1import Weather from "scrn/weather"
2import {PregnancyTracker} from "scrn/tracker"
3
4export default function Display() {
5 return <flex direction="horizontal" separator="dashed">
6 <Weather weight={55} padding={20} location="Vienna, Austria" />
7 <PregnancyTracker weight={45} padding={20} due="2025-07-05" />
8 </flex>
9}