2022-04-11 01:48:17 +00:00
|
|
|
import React from "react";
|
|
|
|
import Layout from "@theme/Layout";
|
|
|
|
import { SquigglePlayground } from "../components/SquigglePlayground";
|
|
|
|
|
|
|
|
export default function PlaygroundPage() {
|
|
|
|
return (
|
|
|
|
<Layout title="Playground" description="Squiggle Playground">
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
maxWidth: 2000,
|
|
|
|
}}
|
|
|
|
>
|
2022-05-02 21:37:50 +00:00
|
|
|
<SquigglePlayground
|
|
|
|
initialSquiggleString="normal(0,1)"
|
|
|
|
height={700}
|
|
|
|
showTypes={true}
|
|
|
|
/>
|
2022-04-11 01:48:17 +00:00
|
|
|
</div>
|
|
|
|
</Layout>
|
|
|
|
);
|
|
|
|
}
|