@afiniti/footer
Version:
React component for footer
41 lines (28 loc) • 824 B
Markdown
React Footer module built.
Your feedback would be highly appreciated, custom features can also be requested. Only meant for within
organization private usage.
npm i @afiniti/footer
| Name | Type | Description |
| -------- | -------- | ----------------- |
| `apiUrl` | `string` | graphcms api url. |
The package can be integrated inside a react component as follows:
```jsx
import React from 'react';
import Footer from '@afiniti/footer';
import '@afiniti/footer/footer.css';
const ContactUs = () => {
return (
<Footer
apiUrl="https://api-euwest.graphcms.com/v1/sdkasndkasndknas/master"
slug="welcome-home"
/>
);
};
export default ContactUs;
```