From e89fc8cf183ba68cdf96066653c65faa9daffb62 Mon Sep 17 00:00:00 2001 From: Slava Bereza Date: Fri, 1 Dec 2023 17:09:24 +0300 Subject: [PATCH] chore: readme update fix isolate import --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4aa7e6..d7a8692 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ export const User => { Run your app in isolated Service Provider scope. All instances cached for this will be isolated from all cached instances in other scopes. Useful for implementing SSR. ```javascript -import { isolate } from "provi/client" +import { isolate } from "provi/ssr" const html = await isolate(async () => { const { run } = provide(Logic); // Isolated instance of app logic