sokra / rawact

[POC] A babel plugin which compiles React.js components into native DOM instructions to eliminate the need for the react library at runtime.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

useCallback is undefined

flyyuan opened this issue · comments

image

import React, { useState, useCallback,useEffect } from "react";
  useEffect(()=>{
    console.log('useEffect is work')
    console.log('useCallback:',useCallback)
  },[])