Соснин Алексей

Results 14 issues of Соснин Алексей

Let's add this hook as part of the core. Since this is a common need, many people often ask the question "Why does useEffect not sense ref.current changes?" ```js //...

Type: Discussion
React 18

next.config.js ```js const withLinaria = require('next-linaria') module.exports = withLinaria({}) ``` ![image](https://user-images.githubusercontent.com/69426460/124229138-d3414b80-db15-11eb-86c9-6e496aa20606.png)

this not call mutation ```typescript const [sendMessage] = useMutation((mutation) => { return mutation.createMessage({ text: 'lol' }) }) sendMessage()}>Send ``` this call mutation ```typescript const [sendMessage] = useMutation((mutation) => { const...

``` module.exports = { devServer: { clientLogLevel: 'silent', // this contentBase: path.resolve(__dirname, build), stats: 'errors-only', port: 3000, hot: true, }, } ``` ![image](https://user-images.githubusercontent.com/69426460/95030899-6b132580-06bb-11eb-83e8-227df04d65be.png) ![image](https://user-images.githubusercontent.com/69426460/95030909-78c8ab00-06bb-11eb-9a06-ebe4a8f15347.png) Solution: - you should use the...

Ince all css preprocessors are static, they do their job during compilation time, and in fact, if they are executed by babel BEFORE the data is passed to styled-components, then...

How to use with NextJS + typescript?

enhancement: proposal 💬
platform: next.js 🛠️
cat: typings 👮

============================================== II. Creating self-contained EBCLI installation ============================================== Installing the EBCLI in C:\Users\me\.ebcli-virtual-env ****************************************** 1. Creating exclusive virtualenv for EBCLI ****************************************** Traceback (most recent call last): File "c:\program files\python37\lib\runpy.py", line 193,...

![image](https://user-images.githubusercontent.com/69426460/95286426-fdf2c200-086b-11eb-844d-a35d48d06657.png) this script create Scene.js in root of my project

> cant find `react-three` programm this not work ![image](https://user-images.githubusercontent.com/69426460/95286541-44e0b780-086c-11eb-9c67-84e7586c0636.png) ![image](https://user-images.githubusercontent.com/69426460/95286562-52963d00-086c-11eb-9de3-fd9c82a47349.png) but if i ass `npx` before `@react-three/gltfjsx`, all works correctly

Now you generate this: ```jsx import React, { useRef } from 'react' import { useGLTF } from '@react-three/drei/useGLTF' export default function Model(props) { const { nodes, materials } = useGLTF('/scene.gltf')...

enhancement