Skip to main content

useSpacesContext

If you are using a function component, you can subscribe to the spaces by using this hook.

Example

import React from 'react';
import { useSpacesContext } from '@availity/spaces';

const SpacesComponent = () => {
const { spaces, loading, error } = useSpacesContext();
};