Answer the question
In order to leave comments, you need to log in
How to write a component?
Option 1
import React from 'react';
class App extends React.Component {
render() {
return (
<React.Fragment>
Компонент
</React.Fragment>
);
}
}
export default App;
import React, { Fragment, Component } from 'react';
class App extends Component {
render() {
return (
<Fragment>
Компонент
</Fragment>
);
}
}
export default App;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question