sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
Below is a list of common React interview questions.
See Chinese version here.
autocomplete="off" onto <form> element;<input> with autocomplete="false" as a first children element of the form.<form autocomplete="off" method="post" action="">
<input autocomplete="false" name="hidden" type="text" style="display:none;">
...| /// <reference path="react-0.13.0.d.ts"/> | |
| import React = require('react'); | |
| var RD = React.DOM; | |
| enum ElementType { A, B, C } | |
| interface NameTypeI {name: string; type: ElementType;} | |
| interface CallbackI { newNode: (x: NameTypeI) => void; } | |
| class NewNode extends React.Component<CallbackI,{},{}> { | |
| constructor(props: CallbackI, context: {}) { |