@rocketsofawesome/mirage
Version:
[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)
18 lines (16 loc) • 409 B
Markdown
## Displaying the footer for a box subscriber
```js
<Footer
isNotSubscriber={false}
isSubscriptionMember={true}
referralAmount={30}
homepageUrl='https://www.rocketsofawesome.com' />
```
## Displaying the footer for a non-subscriber
```js
<Footer
isNotSubscriber={true}
isSubscriptionMember={false}
referralAmount={30}
homepageUrl='https://www.rocketsofawesome.com' />
```