Section10.jsx 567 B

1234567891011121314151617181920
  1. import { Action } from "../action";
  2. // import { css } from "@emotion/react";
  3. import Viewer from "../components/Viewer";
  4. import { TimeLineLabelText } from "../components/TimeLineText";
  5. export default function Section10(props) {
  6. // eslint-disable-next-line react/prop-types
  7. const debug = props.debug || false;
  8. return (
  9. <Viewer
  10. height={"300vh"}
  11. name="Dictionary Render"
  12. path="dictionary-steadi-10fps-873-rev1"
  13. frameCount={45}
  14. enterTween={Action.crossFadeIn}
  15. exitTween={Action.pinForExit}
  16. />
  17. );
  18. }