mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-18 11:51:41 +03:00
1d7bc8a5bc
* remove duplicate import * 🚧 add new linter configuration * 🧑💻 add and run prettier * 🐛 add babel parser for linter * 🧑💻 add lint-fix command * 🚨 use lint-fix * 🚨 remove 'FC' as a type. Use const and JSX.Element * 🚨 enforce arrow function rule from linter * 🔥 delete unused file * 🚨 adding /* eslint-disable */ in failing files * 💩 add ts-expect-error to Victory components
18 lines
449 B
TypeScript
18 lines
449 B
TypeScript
/* eslint-disable */
|
|
"use client";
|
|
|
|
import { createContext } from "react";
|
|
|
|
import useChats from "./hooks/useChats";
|
|
import { ChatsState } from "./types";
|
|
|
|
export const ChatsContext = createContext<ChatsState | undefined>(undefined);
|
|
|
|
export const ChatsProvider = ({ children }: { children: React.ReactNode }) => {
|
|
const chatsState = useChats();
|
|
|
|
return (
|
|
<ChatsContext.Provider value={chatsState}>{children}</ChatsContext.Provider>
|
|
);
|
|
};
|