Estoy usando react-reader npm y no puedo poner mi familia de fuentes personalizada en mi proyecto. ¿Alguien sabe la respuesta de esto?
import React, { useState,useRef } from "react" import { ReactReader } from "react-reader" const App = () => { const [location, setLocation] = useState(null) const renditionRef = useRef(null); return ( <div style={{ height: "100vh" }}> <ReactReader location={location} locationChanged={ (epubcifi)=>setLocation(epubcifi)} url="https://gerhardsletten.github.io/react-reader/files/alice.epub" getRendition={(rendition) => { renditionRef.current = rendition; renditionRef.current.themes.register('custom', { p: { 'font-family': `Helvetica`, }, }); renditionRef.current.themes.select('custom'); }} /> </div> ) } export default App