blob: 3d4be27f451eee1a07c0149fd8b14142826fe554 (
plain) (
blame)
1
2
3
4
5
6
|
import { useContext } from 'react';
import { WebsiteContext } from '@/app/(main)/websites/WebsiteProvider';
export function useWebsite() {
return useContext(WebsiteContext);
}
|