I have add the menu in admin Orders section but menu not display #252

I have adding menu in vtex admin under “Orders” section but not diplsay. I have follow below steps.

Step 1) Added manifest.json and update
{
“vendor”: “myinfo”,
“name”: “admin-course”,
“version”: “0.0.0”
}

And added “admin” in builders

Step 2)navigation.json
{
“section”: “orders”,
“titleId”: “admin-example.navigation.label”,
“path”: “/admin/iotraining”
}

Step 3)routes.json
{
“admin.app.example”: {
“component”: “adminExample”,
“path”: “/admin/app/iotraining”
}
}

Step 4)react/adminExample.tsx
//react/adminExample.tsx
import React, { FC } from ‘react’

const AdminExample: FC = () => {
return

Hello, World!


}
export default AdminExample

Step 5)Added “messages” in builders

File path: /messages/pt.json
{
“admin-example.navigation.label”: “Treinamento de IO”
}

File path: /messages/en.json
{
“admin-example.navigation.label”: “IO Training”
}

File path: /messages/es.json
{
“admin-example.navigation.label”: “Entrenamiento de IO”
}

Menu is not showing in admin under Order section. Any have idea then let me know.

Hello @kirtinariya

Just to confirm, is the menu not showing up at all, or is it being rendered without text?

Also, have you tried linking the app on a different workspace, just to make sure there isn’t any conflict with existing apps in the workspace you were using?

Eduardo Luciano
Field Software Engineer | VTEX

Hello @eduardo.luciano
menu not showing up at all and I have cheked with other workspace also.