mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-24 12:43:05 +00:00
Update ref-01-top-level-api.md
Added docs for `React.isValidClass` and `React.isValidComponent`. Still missing top level api: * `constructAndRenderComponent` * `constructAndRenderComponentById` * `withContext`
This commit is contained in:
@@ -73,6 +73,23 @@ string renderComponentToStaticMarkup(ReactComponent component)
|
||||
|
||||
Similar to `renderComponentToString`, except this doesn't create extra DOM attributes such as `data-react-id`, that React uses internally. This is useful if you want to use React as a simple static page generator, as stripping away the extra attributes can save lots of bytes.
|
||||
|
||||
### React.isValidClass
|
||||
|
||||
```javascript
|
||||
boolean isValidClass(ReactClassDescriptor factory)
|
||||
```
|
||||
|
||||
Verifies the factory is a React class. See `React.createClass`.
|
||||
|
||||
|
||||
### React.isValidComponent
|
||||
|
||||
```javascript
|
||||
boolean isValidComponent(ReactComponent object)
|
||||
```
|
||||
|
||||
Verifies the object is a React component.
|
||||
|
||||
|
||||
### React.DOM
|
||||
|
||||
|
||||
Reference in New Issue
Block a user