jsの時はこうimportしていた。
import React, { Component } from 'react';
tsにするとこういうエラーが出た。
uncaught at syncUserInfo TypeError: Cannot read property 'createElement' of undefined
こうすることでちゃんと動くようになった。
import * as React from 'react';
Go to list of users who liked
More than 5 years have passed since last update.
jsの時はこうimportしていた。
import React, { Component } from 'react';
tsにするとこういうエラーが出た。
uncaught at syncUserInfo TypeError: Cannot read property 'createElement' of undefined
こうすることでちゃんと動くようになった。
import * as React from 'react';
Register as a new user and use Qiita more conveniently
Go to list of users who liked