mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 19:00:13 +01:00
feat: export to screenshot
This commit is contained in:
parent
6f0b559927
commit
96914387a6
5 changed files with 73 additions and 25 deletions
|
|
@ -7,6 +7,8 @@ import store from './store';
|
|||
import userAuth from './utils/userAuth';
|
||||
import { useRecoilState, useSetRecoilState } from 'recoil';
|
||||
|
||||
import { ScreenshotProvider } from './utils/screenshotContext.jsx';
|
||||
|
||||
import axios from 'axios';
|
||||
|
||||
const router = createBrowserRouter([
|
||||
|
|
@ -97,4 +99,8 @@ const App = () => {
|
|||
else return <div className="flex h-screen"></div>;
|
||||
};
|
||||
|
||||
export default App;
|
||||
export default () => (
|
||||
<ScreenshotProvider>
|
||||
<App />
|
||||
</ScreenshotProvider>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue