Files
2019-06-20 16:01:36 -05:00

23 lines
561 B
Markdown

---
title: Render React on the Server with renderToString
localeTitle: تجعل رد فعل على الخادم مع renderToString
---
## تجعل رد فعل على الخادم مع renderToString
## حل:
يمكنك تمرير `class` `.renderToString()` إلى `.renderToString()` مثلما تقوم بتمرير مكون إلى طريقة `render` .
```jsx
class App extends React.Component {
constructor(props) {
super(props);
}
render() {
return <div/>
}
};
// change code below this line
ReactDOMServer.renderToString(<App />);
```