React

ReactJS Practical Questions - import a component f...

29.

What is the correct syntax to import only the Component from the React library?

import [ Component ] from 'react';

import { Component } from 'react';

import * as React from 'react';

import React, { Component } from 'react';