speice.io/blog/2024-11-15-playing-with-fire/1-introduction/scope.tsx

12 lines
267 B
TypeScript
Raw Normal View History

import Gasket from "./Gasket";
2024-11-24 22:37:53 -05:00
import { plot } from './plot';
import { randomBiUnit } from '../src/randomBiUnit';
import { randomInteger } from '../src/randomInteger';
const Scope = {
Gasket,
plot,
randomBiUnit,
randomInteger,
}
export default Scope;