diff options
author | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2024-02-01 11:42:08 -0700 |
---|---|---|
committer | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2024-02-01 11:42:08 -0700 |
commit | 2b2ed28e2d5e5f1bec6543d18907e7cca46faac0 (patch) | |
tree | 2c9b53a97435d6dfee96b1ef4a2fcc5652c26478 /src/project.ts | |
parent | d7495c101d5aea78dfac8116e8535c0a0df3b6d1 (diff) | |
download | compiling-the-lambda-calculus-2b2ed28e2d5e5f1bec6543d18907e7cca46faac0.tar.gz compiling-the-lambda-calculus-2b2ed28e2d5e5f1bec6543d18907e7cca46faac0.zip |
intro to me slide
Diffstat (limited to 'src/project.ts')
-rw-r--r-- | src/project.ts | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/project.ts b/src/project.ts index ecfbbeb..82af284 100644 --- a/src/project.ts +++ b/src/project.ts @@ -1,7 +1,10 @@ -import {makeProject} from '@motion-canvas/core'; +import { makeProject } from "@motion-canvas/core"; -import example from './scenes/example?scene'; +import "./global.css"; // <- import the css + +import example from "./scenes/example?scene"; +import me from "./scenes/me?scene"; export default makeProject({ - scenes: [example], + scenes: [example, me], }); |