From the course: Create a CRM Mobile Application with React Native (2019)

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Create company list view

Create company list view - React Native Tutorial

From the course: Create a CRM Mobile Application with React Native (2019)

Start my 1-month free trial

Create company list view

- [Instructor] Alright, so the next step in the evolution of our company item, or company list, is to create the company item. 'Cause right now it's not able to resolve that component. This is why we get the error here. So let's go ahead and create that. And the cool thing is, it's going to look very similar to people lists. So we're going to copy from people item to the company item. So let's create the component first. Okay, S. And then let's go to our people item. And let's copy all that code, and then put it in here in company item. And then the first thing we're going to do is to make sure that we first check our stuff at the bottom here. So we're not going to need connect here, so we can remove that. And we're not going to need actions either, so we can remove actions, too. Because we're not doing any actions on this particular item here. So we can remove all this and simply export the component, which is not people time, it is company item. So let's go and do that. Like so. And…

Contents