refactor: replace 'preact' with 'react' (#1048)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user