import { View, Text } from '@tarojs/components'; import { BENEFIT_SLOGAN } from '../lib/benefit-copy'; type BenefitSloganBarProps = { className?: string; }; export default function BenefitSloganBar({ className }: BenefitSloganBarProps) { return ( {BENEFIT_SLOGAN} ); }