Select the types of activity you want to include in your feed.
1import React, { createContext } from 'react'; 2 3export const querySearchContext = createContext<{ query: string; regex: boolean }>({ query: '', regex: false });