File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed
Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 77 QueryClientProvider ,
88 isServer ,
99} from '@tanstack/react-query'
10- import { ReactNode } from 'react'
1110
1211// In Next.js, this file would be called: app/providers.tsx
1312
@@ -38,7 +37,11 @@ function getQueryClient() {
3837 return browserQueryClient
3938}
4039
41- const Providers = ( { children } : { children : ReactNode } ) : JSX . Element => {
40+ const Providers = ( {
41+ children,
42+ } : {
43+ children : React . ReactNode
44+ } ) : JSX . Element => {
4245 // NOTE: Avoid useState when initializing the query client if you don't
4346 // have a suspense boundary between this and the code that may
4447 // suspend because React will throw away the client on the initial
Original file line number Diff line number Diff line change 1+ import React from 'react'
2+
13import '@testing-library/jest-dom'
24import { render , screen } from '@testing-library/react'
3- import React from 'react'
45
56import { Clickable , ClickableProps } from './Clickable'
67
Original file line number Diff line number Diff line change 1- import { IcSearch } from '@/assets/IconList'
21import { useState } from 'react'
32import { Controller , useFormContext } from 'react-hook-form'
43
4+ import { IcSearch } from '@/assets/IconList'
5+
56import { DeletableChip } from '../chip'
67import { TextInput , TextInputProps } from './TextInput'
78
Original file line number Diff line number Diff line change 1- import clsx from 'clsx'
21import { FieldValues , UseFormRegister } from 'react-hook-form'
2+
3+ import clsx from 'clsx'
34import { twMerge } from 'tailwind-merge'
45
56export interface TextInputProps
Original file line number Diff line number Diff line change 1- import { Meta , StoryObj } from '@storybook/react'
21import { useState } from 'react'
32
3+ import { Meta , StoryObj } from '@storybook/react'
4+
45import { CheckboxInput } from '@/components/common/input/CheckboxInput'
56import type { CheckboxInputProps } from '@/components/common/input/CheckboxInput'
67
You canβt perform that action at this time.
0 commit comments