The date picker component is used to create a date picker anywhere in the application.

To use the date picker component, please view below props that are needed to construct one:
title - date picker label
onDateChange - calls this function on date change
date - value of the date currently set
scroll - ref to the scroll container it is in, for it to correctly function inside the scrollable container
Example:
<DatePicker
date={dateOfManufacture}
onDateChange={setDateOfManufacture}
scroll={ref}
title="Manufacture Date"
/>
src/screens/VehicleRegistrationModule/CarRegistrationScreen/CarRegistrationScreen.js