refactor: replace 'preact' with 'react' (#1048)

This commit is contained in:
Aman Harwara
2022-05-30 12:42:52 +05:30
committed by GitHub
parent e74b4953ea
commit 8c368dd96b
231 changed files with 4794 additions and 4302 deletions

View File

@@ -2,14 +2,14 @@ import { AppState } from '@/UIModels/AppState'
import { WebApplication } from '@/UIModels/Application'
import { observer } from 'mobx-react-lite'
import Bubble from '@/Components/Bubble/Bubble'
import { useCallback } from 'preact/hooks'
import { useCallback } from 'react'
type Props = {
appState: AppState
application: WebApplication
}
export const SearchOptions = observer(({ appState }: Props) => {
const SearchOptions = ({ appState }: Props) => {
const { searchOptions } = appState
const { includeProtectedContents, includeArchived, includeTrashed } = searchOptions
@@ -31,4 +31,6 @@ export const SearchOptions = observer(({ appState }: Props) => {
<Bubble label="Trashed" selected={includeTrashed} onSelect={searchOptions.toggleIncludeTrashed} />
</div>
)
})
}
export default observer(SearchOptions)