This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {useEffect, useState, useRef} from 'react'; | |
import {useSWRInfinite} from 'swr'; | |
import Layout from 'components/layouts'; | |
import ErrorPage from 'components/Error'; | |
import ActorCard from 'components/actorCard'; | |
import VerticalList from 'components/verticalList'; | |
import gate from 'gate'; | |
import useOnScreen from 'hooks/useOnScreen'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var roman = { | |
M: 1000, | |
CM: 900, | |
D: 500, | |
CD: 400, | |
C: 100, | |
XC: 90, | |
L: 50, | |
XL: 40, | |
X: 10, |