Spaces:
Running
Running
| // 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 | |
| }; |