Question: If you want to import just the Component from the React library, what syntax do you use?
- `import React.Component from 'react'`
- `import [ Component ] from 'react'`
- `import Component from 'react'`
- `import { Component } from 'react'`
Answer: The correct answer of the above question is Option D:`import { Component } from 'react'`