1234567891011121314151617181920 |
- import { Action } from "../action";
- // import { css } from "@emotion/react";
- import Viewer from "../components/Viewer";
- import { TimeLineLabelText } from "../components/TimeLineText";
- export default function Section10(props) {
- // eslint-disable-next-line react/prop-types
- const debug = props.debug || false;
- return (
- <Viewer
- height={"300vh"}
- name="Dictionary Render"
- path="dictionary-steadi-10fps-873-rev1"
- frameCount={45}
- enterTween={Action.crossFadeIn}
- exitTween={Action.pinForExit}
- />
- );
- }
|