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

14 lines
229 B
TypeScript
Raw Normal View History

import React from 'react';
import randomBiUnit from './biunit';
import plot from './plot';
import randomInteger from './randint';
const Scope = {
React,
plot,
randomBiUnit,
randomInteger
}
export default Scope;