"No applicable renderer found"

Here is Schema:

{
“type”: “object”,
“properties”: {
“ERTitle”: {
“type”: “string”,
“minLength”: 3,
“maxLength”: 15

    },
    "MMNum": {
        "type": "integer",
        "minLength": 1,
        "maxLength": 999999999,

    }
}

}

UI schema:
{
“type”: “VerticalLayout”,
“elements”: [
{
“type”: “HorizontalLayout”,
“elements”: [
{
“type”: “Control”,

                "scope": "#/properties/ERTitle"
            },
            {
                "type": "Control",

                "scope": "#/properties/MMNum"
            }
        ]
    }
]

}
I am getting blank page with error message No applicable renderer found.
What i am doing wrong?

[original thread by kashifxs]

Hi @xs-kashif, thanks for your interest in JSON Forms. When using the JSON Forms React seed your schema and UI schema render without problems.

I would like to suggest to look at the React seed and check whether you invoke JSON Forms correctly. If you still have problems feel free to ask here again. If that’s the case please share a code snippet on how you use JSON Forms.