mirror of
https://github.com/bspeice/speice.io
synced 2024-12-23 00:58:09 -05:00
15 lines
311 B
TypeScript
15 lines
311 B
TypeScript
import React from 'react';
|
|
|
|
import { randomBiUnit } from '../src/randomBiunit';
|
|
import { Plotter } from './plot';
|
|
import { randomInteger } from '../src/randomInteger';
|
|
import Canvas from './Canvas';
|
|
|
|
const Scope = {
|
|
React,
|
|
Plotter,
|
|
randomBiUnit,
|
|
randomInteger,
|
|
Canvas
|
|
}
|
|
export default Scope; |