Существует ли проект / библиотека, которая могла бы помочь преобразовать Google VSAQ (stati c интерактивное приложение для анкетирования) в приложение React? Если нет, то как бы опытный разработчик go о преобразовании этого кода закрытия в React?
Проект содержит JSON вопросников следующим образом:
{
"questionnaire": [
{
"type": "block",
"text": "Infrastructure Security Questionnaire",
"items": [
{
"type": "block",
"text": "Questionnaire Options",
"items": [
{
"type": "info",
"text": "Select the options that describe your project. These settings configure the questionnaire to fit different scenarios."
},
{
"type": "checkgroup",
"id": "options",
"defaultChoice": false,
"choices": [
{"req_sensitive": "<b>Sensitive data</b>: This project involves processing Personally Identifiable Information (PII), Sensitive PII, or other information your customers may consider sensitive."},
{"req_nodata": "<b>Remote access only</b>: All information processing occurs on your customers' systems, and this project accesses those systems remotely."}
]
}
]
}