import { View } from "react-native" import tw from "twrnc" import { SansSerifText } from "./ui/sans-serif-text" export type Showcase = { title: string component: React.ComponentType } export function Section({ title, children }: { title: string; children: React.ReactNode }) { return ( {title} {children} ) }