AlexisTercero55 / contact-list

https://alexistercero55.github.io/contact-list/
1 stars 0 forks source link

Generate list container component #3

Closed AlexisTercero55 closed 1 year ago

AlexisTercero55 commented 1 year ago
AlexisTercero55 commented 1 year ago

https://github.com/AlexisTercero55/contact-list/blob/8535ae92f324ec88790a8b31153843845094f605/src/App.jsx#L20

AlexisTercero55 commented 1 year ago

Review comments

The <Container fluid> component need to wrap the main component in order to the table works as expected (mobile responsive).

https://github.com/AlexisTercero55/contact-list/blob/b0fa5758514460431d4109f6563aa7eb5ce69658/src/App.jsx#L15

function App() {
  return (
    <Container fluid >
    <main className="App">
      <header className='my-3'>
        <h1>Contact list</h1>
      </header>
      <ProfileContextProvider>
        <ContactList ></ContactList>
      </ProfileContextProvider>
    </main>
    </Container>
  )
}

Image