Skip to content
react logo

React

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

Here are 69,799 public repositories matching this topic...

ant-design
material-ui
LikiaSun
LikiaSun commented Oct 7, 2019

Select component's onChange is work, but it cannot render selected value.

import React, { useState } from 'react';
import InputLabel from '@material-ui/core/InputLabel';
import Select from '@material-ui/core/Select';
import MenuItem from '@material-ui/core/MenuItem';

export default function Test() {
  const [test, setTest] = useState({
    a: '',
    b: '',
    sum: {
storybook
sdornan
sdornan commented Oct 3, 2019

Bug report

Describe the bug

Default viewport tag is being appended to and not replaced whenever you use define your own custom viewport tag.

To Reproduce

Define a simple _app.tsx that attempts to set a custom viewport meta tag.

import App from 'next/app'
import Head from 'next/head'

class MyApp extends App {
  render() {
    const { Component, pageProp
sidharthachatterjee
sidharthachatterjee commented Oct 14, 2019

Renovate is fantastic but because of our config at the moment, we get several updates in a day.

We should probably do two things

  • batch all minor updates in a single PR
  • schedule them at a reasonable time (twice a week, perhaps at 10 am GMT)

This should go in config at https://github.com/gatsbyjs/gatsby/blob/master/renovate.json

Documentation for options is at https://docs.renovat

preact
abhisheksoni27
abhisheksoni27 commented Mar 3, 2019

Just like we have a create-react-app for react, we now have nano-preact-app for preact.

There's not much bloatware. Just an index file that renders our App, an App component that showcases how we can create a Component and a couple of build scripts for developers.

I am also using Parcel to build the project.

PRs and issues welcome. Hope it helps everyone!

Here it is: [nano-preact-a

vonweb
vonweb commented Jul 25, 2019

问题描述
创建FunctionComponent类型的页面,设置页面的config时不方便,希望在官方的FunctionComponent中加入config的类型定义

复现步骤

现在通过新建的taroPatch.d.ts实现的

import Taro from '@tarojs/taro'

declare module '@tarojs/taro' {
  interface FunctionComponent {
    config?: Taro.Config
  }
}

期望行为
直接在node_modules\@tarojs\taro\types\index.d.ts中加入config类型定义

报错信息

![image](https://user-images.gith

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?

langpavel
langpavel commented Oct 24, 2017

Too wide (and falsy) segregation of GraphQL Types and Resolvers

The first example of this is new ObjectType in src/data/queries/index.js importing fields.
Fields should be taken in context of parent type, not as standalone information.

This can ensure some users that custom types cannot have own field resolvers which is false.

In fact, much of fields which can have own resolvers

markerikson
markerikson commented Aug 17, 2018

The current React-Redux docs aren't very helpful, for a lot of reasons:

  • They're just a Markdown file in the repo, instead of being published in HTML form
  • It feels very "dense" and jargon-heavy
  • It doesn't clearly lay out the various options for connect and ways that you can use it
  • It's primarily in API reference form, rather than a "how to"

We do also have the "Using React with R

You can’t perform that action at this time.