I see some applications do this:
// App.jsx
export function App() {}
// index.jsx
import { App } from './App'
and others do this:
// App.jsx
export const App = () => {}
// index.jsx
import { App } from './App'
Is there any difference? If there are differences, when would you pick one over the other?