Spaces:
Runtime error
Runtime error
File size: 281 Bytes
a5e87d0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import React from "react";
import Main from "./app/screens/Main";
import MessageFetchProvider from "./app/context/MessageFetch";
const App = () => {
return (
<>
<MessageFetchProvider>
<Main />
</MessageFetchProvider>
</>
);
};
export default App;
|