I'm a newcomer on React, I'm a Little confused about how "import" statements are written. Until now I've seen this 4 styles:
/* This is very clear to me - Here no Problem */
import React from 'react';
/* What does "./" before ListContacts mean? */
import ListContacts from './ListContacts'
/* What "*" and "as" mean on this import statement? */
import * as ContactsAPI from './utils/ContactsAPI'
/*What does { } mean on this import statement? */
import { BrowserRouter } from 'react-router-dom'
Thanks very much for your time