Skip to content

Commit a3f5a3a

Browse files
committed
react 19
1 parent 48e1b15 commit a3f5a3a

File tree

6 files changed

+1077
-926
lines changed

6 files changed

+1077
-926
lines changed

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Add files here to ignore them from prettier formatting
22

3+
.jj
34
/dist
45
/coverage
56
/templates
67

7-
mockServiceWorker.js
8+
mockServiceWorker.js

app/table/Table.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88
import { flexRender, type Table as TableInstance } from '@tanstack/react-table'
99
import cn from 'classnames'
10+
import type { JSX } from 'react'
1011

1112
import { Table as UITable } from '~/ui/lib/Table'
1213

app/ui/lib/Table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Copyright Oxide Computer Company
77
*/
88
import cn from 'classnames'
9-
import React, { useRef, type ReactElement } from 'react'
9+
import React, { useRef, type JSX, type ReactElement } from 'react'
1010
import SimpleBar from 'simplebar-react'
1111

1212
import { useIsOverflow } from '~/hooks/use-is-overflow'

app/util/classed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Copyright Oxide Computer Company
77
*/
88
import cn from 'classnames'
9-
import React, { forwardRef } from 'react'
9+
import React, { forwardRef, type JSX } from 'react'
1010

1111
// all the cuteness of tw.span`text-green-500 uppercase` with zero magic
1212

0 commit comments

Comments
 (0)