Files

10 lines
212 B
TypeScript
Raw Permalink Normal View History

2026-05-23 17:17:56 -07:00
import './styles/FooterText.css'
interface PropsForFooterText {
label: string
}
export default function FooterText({ label }: PropsForFooterText) {
return <span className="footer-text">{label}</span>
}