Select the types of activity you want to include in your feed.
1import { create } from "zustand"; 2 3export interface Web { 4 width: number; 5} 6 7export const useWindow = create<Web>(() => ({ 8 width: Infinity 9}));