Skip to content
#

React

react logo

React (also known as React.js or ReactJS) is a JavaScript library that makes developing interactive user interfaces simple.

Here are 76,843 public repositories matching this topic...

freeCodeCamp
mrmckeb
mrmckeb commented Jul 25, 2019

Is your proposal related to a problem?

This is a follow-on from #7248. Right now, we don't support JSONC (JSON with comments) in jsconfig.json files.

Describe the solution you'd like

After a discussion with @iansu, we see two paths:

  1. Implement the same solution as we did for TypeScript. This is easy, but would require us making TypeScript a dependency of react-scripts.
ant-design
material-ui
storybook
levelingup
levelingup commented Dec 24, 2019

I tried to follow the initial steps from here: https://www.learnstorybook.com/intro-to-storybook/react/en/get-started/

running:

npx create-react-app taskbox
cd taskbox

Then when I ran:
npx -p @storybook/cli sb init

I get the error TypeError: Cannot set property 'storybook' of undefined

This is the full message in my terminal:

 sb init - the simplest way to add a
alidlo
alidlo commented Jan 4, 2020

Bug report

When using react-native-web, when an external package wraps a component (i.e. View) or StyleSheet, those styles are not resolve during server rendering. Causing screen to flicker until styles are provided by client.

I believe part of the issue is that RNW relies on es6 imports for caching, and so perhaps Next.js is splitting the bundles in a way that creates two separate instances

ionic
ebk46
ebk46 commented Dec 18, 2019

Bug Report

Ionic version:
[x] 4.7.11

Current behavior:
When the value of an Ionic input element is changed from OUTSIDE of the element, the element's onIonChange is triggered, thereby duplicating the change event.

Expected behavior:
As with every other React input, the onIonChange should only be triggered when the value was change from the element itself.

**Steps t

1023568249
1023568249 commented Oct 15, 2019

Challenge Build a Tribute Page has an issue.
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36.
Please describe how to reproduce this issue, and include links to screenshots if possible.

好像VIMEO把GOOGLE的云服务器IP拉黑了,始终打不开视频。想问问是否有其他视频源可以观看

styled-components
r4j4h
r4j4h commented Dec 23, 2019

Bug: Psuedo-selector behavior differs when newlines present in selector in DOM

Important pieces:

  • pseudo-selector is required to exhibit behavior
  • newlines in selector (without commas) are required to exhibit behavior
  • styled-component references work cleanly, but were removed to keep the example concise. See proof at end. [1]
  • a Styled Component div that styles children is being us
preact
mhmdanas
mhmdanas commented Nov 15, 2019

Reading through the source code, I find places where == or != are used for typeof, and others where === or !== are used. I believe we should choose one and stick with it. I'd be happy to open a PR for this once there is agreement on which choice should be used.

Note: looking at the produced bundles, it seems that with typeof, === is compiled to ==, and !== is compiled to `

cyz980908
cyz980908 commented Jan 13, 2020
  • 原文链接:https://strapi.io/blog/build-a-blog-using-nuxt-strapi-and-apollo
  • 简要介绍:前段时间有人推荐了如何使用nest、vue、mongodb,搭建博客。这篇文章是使用Nuxt.js、strapi 和 Apollo 搭建博客。其中Nuxt.js 是Vue的服务端渲染框架、strapi是一个很方便且开源的内容管理平台(这里用来管理数据库里的博客帖子),Apollo 用于 graphQL ,也就是前后端的交互。可以说是上次那篇博客的另一种实现方案。
    另外...strapi现在在公测的beta版本,如果有正式版本发布,掘金翻译计划有没有兴趣翻译一下文档。。。strapi 在GitHub 上有21k 的star,还挺多的。

请完成并勾选一下三项:

  • [ x
react-boilerplate
FredyC
FredyC commented Oct 9, 2019

@cloverich We shall also figure out to deal with that README, I did not like that I had to do the change (#2144) twice, even though it was a small thing.

If we were about to copy those files, how do we ensure people will edit the right one?

Is it really that problematic with Docusaurus to reference the one from the root folder? Some sort of aliasing?

formik
akhileshacc
akhileshacc commented Dec 3, 2019

First, I am not sure how to exactly add Material UI support.
I added by doing this in client.js

<App context={context} insertCss={insertCss}>
        <MuiThemeProvider>
          <CssBaseline />
          {route.component}
        </MuiThemeProvider>
      </App>

Please tell whats the right way to integrate material UI.
Material UI applies styles well when server starts. But at

sheetjs
dandv
dandv commented Jan 6, 2020
const XLSX = require('xlsx');

const wb = XLSX.utils.book_new();

const ws = XLSX.utils.json_to_sheet([]);

XLSX.utils.book_append_sheet(wb, ws, 'Bug sheet');

ws.A1 = { t: 's', f: 'square' };

XLSX.writeFile(wb, 'formula.ods');

The resulting .ODS file contains:

<table:table-cell table:formula="of:=square" office:value-type="string"><text:p>undefined</text:p></table

Created by Jordan Walke

Released March 2013

Latest release 3 months ago

Repository
facebook/react
Website
reactjs.org
Wikipedia
Wikipedia

Related Topics

angular react-native vue
You can’t perform that action at this time.