Skip to content

Commit 0ef6fa4

Browse files
committed
ad recordings view
1 parent 6aeb23a commit 0ef6fa4

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

src/renderer/components/MainLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Box, Flex } from "@radix-ui/themes";
22
import type { Task } from "@shared/types";
33
import { useCallback, useEffect, useState } from "react";
44
import { useHotkeys } from "react-hotkeys-hook";
5-
import { RecordingsView } from "../features/recordings";
5+
import { RecordingsView } from "@/renderer/features/recordings";
66
import { useIntegrations } from "../hooks/useIntegrations";
77
import { useTabStore } from "../stores/tabStore";
88
import { CommandMenu } from "./command";
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Flex } from "@radix-ui/themes";
2+
3+
export function RecordingsView() {
4+
return (
5+
<Flex direction="column" style={{ height: "100%" }}>
6+
RecordingsView. Rest will come later!
7+
</Flex>
8+
);
9+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { RecordingsView } from "./components/RecordingsView";

0 commit comments

Comments
 (0)