Enables Stackflow Devtools (Chrome extension)
npm install @stackflow/plugin-devtoolsEnables Stackflow Devtools (Chrome extension)
``typescript
import { stackflow } from "@stackflow/react";
import { devtoolsPlugin } from "@stackflow/plugin-devtools";
const { Stack, useFlow } = stackflow({
activities: {
// ...
},
plugins: [
devtoolsPlugin(),
// ...
],
});
``