React Advanced Interview Questions

What is the recommended way for naming components in React? The recommended way to name the component is by reference instead of just using displayName. In the below example the component is named as AccountApp instead of displayName: export default class AccountApp extends React.Component {   // … } What is the recommended way of ordering … Continue reading React Advanced Interview Questions