PUROGU LADESU

ポエムがメインのブログです。

2020-04-02から1日間の記事一覧

【React】React Context と Unstated

状態管理のやり方 React Context ライブラリ不要。 const AppContext = React.createContext(null); // Consumer配下のcontextでアクセス function LoginScreen() { return ( <AppContext.Consumer> {(context) => ( <Text>LoginScreen</Text> <Button title="login" onPress={() => context.setLogin(true)}></Button> </View> )}

【React】Redux Toolkit

Redux Toolkit というのを使うと簡潔に書けるらしい。 [https://qiita.com/sakito/items/e446d0f0974f2e12a5f5:embed:cite]