export const CurrentlyInked = () => {
  const [data, setData] = useState(null);
  useEffect(() => {
    fetch("/admins/graphs/currently-inked.json")
      .then((res) => res.json())