React初体验

71 阅读1分钟

const name='React学习' const flag=true const obj={ name:'React学习', description:'参照官网实例学习React' } function sayHello() { return '大家好' }

function App() { return(

{name}

name

{sayHello()}

{console.log('11111')}

{Math.random()}

{flag?'登录的状态':'执行登录'}

{hello,${name}}

1224{/这里是注释内容/}

{/*

{obj}

对象类型无法用jsx直接解析输出,需要使用 JSON.stringify(obj) 转为json字符串*/}

{JSON.stringify(obj)}

) } export default App