import { View } from "react-native" import tw from "twrnc" import { Button } from "./button" import { FeedCard } from "./feed-card" import { SansSerifText } from "./sans-serif-text" import { SerifText } from "./serif-text" import { type Showcase, Section } from "../showcase" function FeedCardShowcase() { return (
Card content goes here
Title Body text inside a feed card.
) } export const feedCardShowcase: Showcase = { title: "FeedCard", component: FeedCardShowcase, }