Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dom subpath export #11851

Merged
merged 7 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix playground imports
  • Loading branch information
brophdawg11 committed Jul 29, 2024
commit 4da96c9aeb4a42c0c90546c0b33a2b2c027e52f8
2 changes: 1 addition & 1 deletion packages/react-router-dev/config/defaults/entry.client.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { startTransition, StrictMode } from "react";
import { hydrateRoot } from "react-dom/client";
import { HydratedRouter } from "react-router";
import { HydratedRouter } from "react-router/dom";

startTransition(() => {
hydrateRoot(
Expand Down
2 changes: 1 addition & 1 deletion playground/compiler-express/app/entry.client.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HydratedRouter } from "react-router";
import { HydratedRouter } from "react-router/dom";
import { startTransition, StrictMode } from "react";
import { hydrateRoot } from "react-dom/client";

Expand Down
2 changes: 1 addition & 1 deletion playground/compiler-spa/app/entry.client.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HydratedRouter } from "react-router";
import { HydratedRouter } from "react-router/dom";
import { startTransition, StrictMode } from "react";
import { hydrateRoot } from "react-dom/client";

Expand Down
2 changes: 1 addition & 1 deletion playground/compiler/app/entry.client.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HydratedRouter } from "react-router";
import { HydratedRouter } from "react-router/dom";
import { startTransition, StrictMode } from "react";
import { hydrateRoot } from "react-dom/client";

Expand Down
Loading