FooterAttach
It is a component that can be used as a footer attachment, should be used after the footer tag closing, as the last component of the page. Useful to display data about the developer at page end.
PabloSilvaDev - 2022 - WebDeveloper
Props:
children
Description: React elements to display. Type: ReactNode. Required.
style
Description: Footer style. Type: CSS Properties.
className
Description: Footer className. Type: String.
Code
import { Divider } from '../components/Elements/Divider';import { Divider } from '../components/Elements/Divider'; <FooterAttach> <Divider /> <Text content='PabloSilvaDev - 2022 - WebDeveloper' style={{ fontSize: 10 }} /> </FooterAttach>