summaryrefslogtreecommitdiff
path: root/src/project.ts
blob: 82af28405fdb3999a0d08d8cdb46cbd13a9bc3bd (plain)
1
2
3
4
5
6
7
8
9
10
import { makeProject } from "@motion-canvas/core";

import "./global.css"; // <- import the css

import example from "./scenes/example?scene";
import me from "./scenes/me?scene";

export default makeProject({
  scenes: [example, me],
});