October 2019
Intermediate to advanced
426 pages
11h 49m
English
First, we are going to request themes from our server, instead of hardcoding the list of themes.
Let's implement requesting themes using an Effect Hook and a State Hook:
import React, { useEffect, useState } from 'react'
const THEMES = [ { primaryColor: 'deepskyblue', secondaryColor: 'coral' }, { primaryColor: 'orchid', secondaryColor: 'mediumseagreen' }]
export default function ChangeTheme ({ theme, setTheme }) { const [ themes, setThemes ...Read now
Unlock full access