mirror of
https://github.com/bspeice/speice.io
synced 2024-12-23 00:58:09 -05:00
14 lines
229 B
TypeScript
14 lines
229 B
TypeScript
|
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;
|