getting things in flow with header

This commit is contained in:
talksik
2022-05-01 09:43:36 -05:00
parent 8444b28989
commit dda1d10039
2 changed files with 75 additions and 37 deletions
@@ -21,3 +21,11 @@ export const $newConvoPage = atom<boolean>({
key: "NEW_CONVO_PAGE",
default: false,
});
type outputMode = "audio" | "video" | "off";
// selected output mode
export const $selectedOutputMode = atom<outputMode>({
key: "OUTPUT_MODE",
default: "video",
});