@lightningdb/playground
v0.1.1
Published
LightningDB Playground
Readme
LightningDB Playground
Frontend React components for a playground making it easy to test queries and mutations.
Getting started
npm i @lightningdb/playgroundNeeds to be wrapped in a
<DBProvider />
import { Playground } from "@lightningdb/playground"
const App: React.FC = () => {
return (
<DBProvider url="ws://localhost:3000">
<Playground />
</DBProvider>
)
}