5 lines
158 B
TypeScript
5 lines
158 B
TypeScript
import { useContext } from "react";
|
|
import { FollowContext } from "../contexts/FollowContext.ts";
|
|
|
|
export const useFollows = () => useContext(FollowContext);
|