Question: If you want to import just the Component from the React library, what syntax do you use?

  1. `import React.Component from 'react'`
  2. `import [ Component ] from 'react'`
  3. `import Component from 'react'`
  4. `import { Component } from 'react'`

Answer: The correct answer of the above question is Option D:`import { Component } from 'react'`