Skip to content
This repository was archived by the owner on Jul 24, 2025. It is now read-only.

Commit 7fde2e9

Browse files
committed
chore: use explicit import extensions
1 parent 37f4b7e commit 7fde2e9

12 files changed

Lines changed: 12 additions & 12 deletions

File tree

playground/decorators/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StrictMode } from "react";
22
import { createRoot } from "react-dom/client";
3-
import { App } from "./App";
3+
import { App } from "./App.tsx";
44

55
createRoot(document.getElementById("root")!).render(
66
<StrictMode>

playground/emotion-plugin/src/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import "./App.css";
2-
import { Button, StyledCode } from "./Button";
2+
import { Button, StyledCode } from "./Button.jsx";
33

44
export const App = () => (
55
<div>

playground/emotion-plugin/src/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StrictMode } from "react";
22
import { createRoot } from "react-dom/client";
3-
import { App } from "./App";
3+
import { App } from "./App.jsx";
44
import "./index.css";
55

66
createRoot(document.getElementById("root")).render(

playground/emotion/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import "./App.css";
2-
import { Button, StyledCode } from "./Button";
2+
import { Button, StyledCode } from "./Button.tsx";
33

44
export const App = () => (
55
<div>

playground/emotion/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StrictMode } from "react";
22
import { createRoot } from "react-dom/client";
3-
import { App } from "./App";
3+
import { App } from "./App.tsx";
44
import "./index.css";
55

66
createRoot(document.getElementById("root")!).render(

playground/hmr/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useState } from "react";
22
import reactLogo from "./react.svg";
33
import "./App.css";
4-
import { TitleWithExport, framework } from "./TitleWithExport";
4+
import { TitleWithExport, framework } from "./TitleWithExport.tsx";
55

66
export const App = () => {
77
const [count, setCount] = useState(0);

playground/hmr/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StrictMode } from "react";
22
import { createRoot } from "react-dom/client";
3-
import { App } from "./App";
3+
import { App } from "./App.tsx";
44
import "./index.css";
55

66
createRoot(document.getElementById("root")!).render(

playground/shadow-export/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StrictMode } from "react";
22
import { createRoot } from "react-dom/client";
3-
import { App } from "./App";
3+
import { App } from "./App.tsx";
44

55
createRoot(document.getElementById("root")!).render(
66
<StrictMode>

playground/styled-components/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import "./App.css";
2-
import { Counter, StyledCode } from "./Button";
2+
import { Counter, StyledCode } from "./Button.tsx";
33

44
export const App = () => (
55
<div>

playground/styled-components/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StrictMode } from "react";
22
import { createRoot } from "react-dom/client";
3-
import { App } from "./App";
3+
import { App } from "./App.tsx";
44
import "./index.css";
55

66
createRoot(document.getElementById("root")!).render(

0 commit comments

Comments
 (0)