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,9 +2,9 @@ import { WebApplication } from '@/UIModels/Application'
import { AppState } from '@/UIModels/AppState'
import { PurchaseFlowPane } from '@/UIModels/AppState/PurchaseFlowPane'
import { observer } from 'mobx-react-lite'
import { FunctionComponent } from 'preact'
import { CreateAccount } from './Panes/CreateAccount'
import { SignIn } from './Panes/SignIn'
import { FunctionComponent } from 'react'
import CreateAccount from './Panes/CreateAccount'
import SignIn from './Panes/SignIn'
import { SNLogoFull } from '@standardnotes/icons'
type PaneSelectorProps = {
@@ -25,7 +25,7 @@ const PurchaseFlowPaneSelector: FunctionComponent<PaneSelectorProps> = ({ curren
}
}
export const PurchaseFlowView: FunctionComponent<PurchaseFlowViewProps> = observer(({ appState, application }) => {
const PurchaseFlowView: FunctionComponent<PurchaseFlowViewProps> = ({ appState, application }) => {
const { currentPane } = appState.purchaseFlow
return (
@@ -56,4 +56,6 @@ export const PurchaseFlowView: FunctionComponent<PurchaseFlowViewProps> = observ
</div>
</div>
)
})
}
export default observer(PurchaseFlowView)