API
플러그인
plugin-devtools

@stackflow/plugin-devtools

이 플러그인은 Stackflow Devtools의 데이터 저장 레이어로 사용돼요.

설치

npm install @stackflow/plugin-devtools

사용법

stackflow.ts
import { stackflow } from "@stackflow/react";
import { devtoolsPlugin } from "@stackflow/plugin-devtools";
 
const { Stack, useFlow } = stackflow({
  activities: {
    // ...
  },
  plugins: [
    devtoolsPlugin(),
    // ...
  ],
});