Skip to content

Commit

Permalink
react 19
Browse files Browse the repository at this point in the history
  • Loading branch information
david-crespo committed Jan 7, 2025
1 parent 48e1b15 commit a3f5a3a
Show file tree
Hide file tree
Showing 6 changed files with 1,077 additions and 926 deletions.
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Add files here to ignore them from prettier formatting

.jj
/dist
/coverage
/templates

mockServiceWorker.js
mockServiceWorker.js
1 change: 1 addition & 0 deletions app/table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*/
import { flexRender, type Table as TableInstance } from '@tanstack/react-table'
import cn from 'classnames'
import type { JSX } from 'react'

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

Expand Down
2 changes: 1 addition & 1 deletion app/ui/lib/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Copyright Oxide Computer Company
*/
import cn from 'classnames'
import React, { useRef, type ReactElement } from 'react'
import React, { useRef, type JSX, type ReactElement } from 'react'
import SimpleBar from 'simplebar-react'

import { useIsOverflow } from '~/hooks/use-is-overflow'
Expand Down
2 changes: 1 addition & 1 deletion app/util/classed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Copyright Oxide Computer Company
*/
import cn from 'classnames'
import React, { forwardRef } from 'react'
import React, { forwardRef, type JSX } from 'react'

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

Expand Down
Loading

0 comments on commit a3f5a3a

Please sign in to comment.