9 lines
295 B
TypeScript
9 lines
295 B
TypeScript
|
|
// Components Imports
|
||
|
|
import SmartFertilizationRecommendation from '@views/dashboards/farm/smartFertilization/SmartFertilizationRecommendation'
|
||
|
|
|
||
|
|
const FertilizationRecommendationPage = async () => {
|
||
|
|
return <SmartFertilizationRecommendation />
|
||
|
|
}
|
||
|
|
|
||
|
|
export default FertilizationRecommendationPage
|