import { useLoader } from '@modern-js/runtime'; import hello from '@api/index'; const App = () => { const { data } = useLoader(async () => { const res = await hello(); return res; }); const { message = 'bff-express' } = data || {}; return
{message}
; }; export default App;