-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.js
25 lines (22 loc) · 937 Bytes
/
examples.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import React from "react";
import AudioWorkletExample from "./audio-worklet.js";
import DelayLineExample from "./delay-lines.js";
import ComplexGraph from "./complex-effects-graph.js";
import BuffersAndChannels from "./buffers-channels.js";
import MediaElementSourceExample from "./media-element.js";
import MediaStreamSourceExample from "./media-stream.js";
import Mutation from "./mutation.js";
import GainMatrixExample from "./gain-matrix.js";
import CustomNodeExample from "./custom-nodes.js";
const examples = {
"audio-worklet": <AudioWorkletExample />,
"delay-lines-scheduling": <DelayLineExample />,
"complex-effects-graph": <ComplexGraph />,
"buffers-channels": <BuffersAndChannels />,
"media-element": <MediaElementSourceExample />,
"media-stream": <MediaStreamSourceExample />,
mutation: <Mutation />,
"gain-matrix": <GainMatrixExample />,
"custom-node": <CustomNodeExample />,
};
export default examples;