Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

React useContext

import React, { useContext } from 'react'

import { Context } from './Context'

export const ConsumingComponent = () => {
  const { state } = useContext(Context)

  return null
}
Source by www.taniarascia.com #
 
PREVIOUS NEXT
Tagged: #React #useContext
ADD COMMENT
Topic
Name
6+1 =