{"ScriptPreparationCode":null,"TestCases":[{"Name":"React","Code":"function Hello(props) {\r\n return React.createElement(\u0027div\u0027, null, \u0060Hello ${props.name}\u0060);\r\n}\r\n\r\nReactDOM.render(React.createElement(Hello, {name: \u0027World\u0027}, null), document.getElementById(\u0027app\u0027));","IsDeferred":false},{"Name":"Blaze","Code":"var hello = Blaze.component(\u0027hello\u0027, {\r\n\ttemplate: function(props) {\r\n\t\treturn \u0027\u003Cdiv\u003EHello \u0027 \u002B props.name \u002B \u0027\u003C/div\u003E\u0027;\r\n\t}\r\n});\r\n\r\nhello.render(\u0027#app\u0027, {\r\n name: \u0027World\u0027\r\n});","IsDeferred":false}]}