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