9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
|
|
// Components Imports
|
||
|
|
import SmartIrrigationRecommendation from '@views/dashboards/farm/smartIrrigation/SmartIrrigationRecommendation'
|
||
|
|
|
||
|
|
const IrrigationRecommendationPage = async () => {
|
||
|
|
return <SmartIrrigationRecommendation />
|
||
|
|
}
|
||
|
|
|
||
|
|
export default IrrigationRecommendationPage
|