API
플러그인
plugin-renderer-web

@stackflow/plugin-renderer-web

활성화 된 액티비티만 스택 상태를 기반으로 렌더링해요. 이 플러그인은 웹 브라우저에서 제공되는 웹 애플리케이션에 사용할 수 있어요.

설치

npm install @stackflow/plugin-renderer-web

사용법

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