import React, { HTMLAttributes } from 'react';
import classnames from 'classnames';
import { IconButton } from './IconButton';
import { Button } from './Button';
import useTheme from '../hooks/useTheme';
import { HStack } from './Stacks';
import { WindowDragRegion } from './WindowDragRegion';
type Props = Omit, 'children'>;
export function Sidebar({ className, ...props }: Props) {
const { toggleTheme } = useTheme();
return (
{[1, 2, 3, 4, 5, 6, 7, 8, 9, 10].map((i) => (
-
))}
);
}