Skip to content

Commit ef31df4

Browse files
committed
format
1 parent 7c65488 commit ef31df4

File tree

30 files changed

+44
-66
lines changed

30 files changed

+44
-66
lines changed

examples/cloudflare-react/pages/Layout.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
export { Layout };
22

3-
import React from "react";
43
import "./Layout.css";
54

65
function Layout({ children }) {

examples/cloudflare-react/pages/about/+Page.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
export default Page;
22

3-
import React from "react";
4-
53
function Page() {
64
return (
75
<>

examples/cloudflare-react/pages/index/+Page.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
export default Page;
22

3-
import React from "react";
43
import { Counter } from "./Counter";
54

65
function Page() {

examples/cloudflare-react/pages/index/Counter.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export { Counter };
22

3-
import React, { useState } from "react";
3+
import { useState } from "react";
44

55
function Counter() {
66
const [count, setCount] = useState(0);

examples/express-react/pages/Layout.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
export { Layout };
22

3-
import React from "react";
43
import "./Layout.css";
54

65
function Layout({ children }) {

examples/express-react/pages/about/+Page.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
export default Page;
22

3-
import React from "react";
4-
53
function Page() {
64
return (
75
<>

examples/express-react/pages/index/+Page.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
export default Page;
22

3-
import React from "react";
43
import { Counter } from "./Counter";
54

65
function Page() {

examples/express-react/pages/index/Counter.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export { Counter };
22

3-
import React, { useState } from "react";
3+
import { useState } from "react";
44

55
function Counter() {
66
const [count, setCount] = useState(0);

examples/fallback-react/pages/Layout.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
export { Layout };
22

3-
import React from "react";
43
import "./Layout.css";
54

65
function Layout({ children }) {

examples/fallback-react/pages/about/+Page.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
export default Page;
22

3-
import React from "react";
4-
53
function Page() {
64
return (
75
<>

0 commit comments

Comments
 (0)