File size: 1,339 Bytes
21d7fc3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Individual sketch exports
export { initialSketch } from './InitialSketch';
export { fluidSketch, fluidReasoning } from './FluidSketch';
export { riseSketch, riseReasoning } from './RiseSketch';
export { lightSketch, lightReasoning } from './LightSketch';
export { travelSketch, travelReasoning } from './TravelSketch';
export { bounceSketch, bounceReasoning } from './BounceSketch';
export { loadingSketch } from './LoadingSketch';

// Import all sketches for the examples object
import { fluidSketch } from './FluidSketch';
import { riseSketch } from './RiseSketch';
import { lightSketch } from './LightSketch';
import { travelSketch } from './TravelSketch';
import { bounceSketch } from './BounceSketch';

// Import all reasonings for the exampleReasonings object
import { fluidReasoning } from './FluidSketch';
import { riseReasoning } from './RiseSketch';
import { lightReasoning } from './LightSketch';
import { travelReasoning } from './TravelSketch';
import { bounceReasoning } from './BounceSketch';

// Export collections
export const examples = {
  fluid: fluidSketch,
  rise: riseSketch,
  light: lightSketch,
  travel: travelSketch,
  bounce: bounceSketch
};

export const exampleReasonings = {
  fluid: fluidReasoning,
  rise: riseReasoning,
  light: lightReasoning,
  travel: travelReasoning,
  bounce: bounceReasoning
};