Skip to content

Commit 72ce05d

Browse files
committed
Add a prototype straight outta claude.
1 parent 597cf79 commit 72ce05d

File tree

2 files changed

+587
-3
lines changed

2 files changed

+587
-3
lines changed

browser-extension/tests/playground/PopupPlayground.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { SpotTable } from '@/components/SpotTable'
2+
import DraftsTable from "./claude"
23
import type { CommentState } from '@/entrypoints/background'
34
import { EnhancerRegistry } from '@/lib/registries'
45
import { sampleSpots } from './playgroundData'
@@ -12,9 +13,10 @@ export function PopupPlayground() {
1213

1314
return (
1415
<div className='w-full'>
15-
<h2 className='mb-4 text-lg font-semibold text-foreground'>Open Comment Spots</h2>
16-
16+
<DraftsTable></DraftsTable>
17+
{/* <h2 className='mb-4 text-lg font-semibold text-foreground'>Open Comment Spots</h2>
1718
<div className='border rounded-md'>
19+
DraftsTable
1820
<SpotTable
1921
spots={sampleSpots}
2022
enhancerRegistry={enhancers}
@@ -25,7 +27,7 @@ export function PopupPlayground() {
2527
emptyStateMessage='No open comment spots'
2628
showHeader={true}
2729
/>
28-
</div>
30+
</div> */}
2931
</div>
3032
)
3133
}

0 commit comments

Comments
 (0)