MDX 测试Jan 13, 2024#blog60AI-generated summaryThis code is written in React and exports a function component called App. The component returns the string "hi". There are two console.log statements, one printing 112 and the other printing 1. info h1# Copyimport React from "react"; export default function App() { return <div>hi</div>; } Copyconsole.log(112); aaaa# Copyconsole.log(1); ---