import React from "react"; import { useSelector } from "react-redux"; export const Fanart = () => { const url = useSelector((state) => state.show.show.fanart_url); return (
); };