Skip to content

Commit e541255

Browse files
committed
prettier
1 parent 6119600 commit e541255

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: examples/react/virtualized-columns/src/main.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ function App() {
9393
{process.env.NODE_ENV === 'development' ? (
9494
<p>
9595
<strong>Notice:</strong> You are currently running React in
96-
development mode. Virtualized rendering performance will be slightly degraded
97-
until this application is built for production.
96+
development mode. Virtualized rendering performance will be slightly
97+
degraded until this application is built for production.
9898
</p>
9999
) : null}
100100
<div>({columns.length.toLocaleString()} columns)</div>

Diff for: examples/react/virtualized-infinite-scrolling/src/makeData.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const fetchData = async (
7878
}
7979

8080
//simulate a backend api
81-
await new Promise((resolve) => setTimeout(resolve, 200))
81+
await new Promise(resolve => setTimeout(resolve, 200))
8282

8383
return {
8484
data: dbData.slice(start, start + size),

Diff for: examples/react/virtualized-rows/src/main.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ function App() {
9999
{process.env.NODE_ENV === 'development' ? (
100100
<p>
101101
<strong>Notice:</strong> You are currently running React in
102-
development mode. Virtualized rendering performance will be slightly degraded
103-
until this application is built for production.
102+
development mode. Virtualized rendering performance will be slightly
103+
degraded until this application is built for production.
104104
</p>
105105
) : null}
106106
({data.length} rows)

0 commit comments

Comments
 (0)