9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
|
|
// Components Imports
|
||
|
|
import CropZoningWrapper from '@views/dashboards/farm/cropZoning/CropZoningWrapper'
|
||
|
|
|
||
|
|
const CropZoningPage = async () => {
|
||
|
|
return <CropZoningWrapper />
|
||
|
|
}
|
||
|
|
|
||
|
|
export default CropZoningPage
|