React
Style Guide
Only use named imports if they are a part of a library.
import { useState, useEffect } from 'react'
Single functions should be default exports.
import HomePage from 'components/HomePage'
Only use named imports if they are a part of a library.
import { useState, useEffect } from 'react'
Single functions should be default exports.
import HomePage from 'components/HomePage'