import { useState } from 'react';
import { Switch } from '@sd/ui';
import { Heading } from '../Layout';
import Setting from '../Setting';
export const Component = () => {
const [syncWithLibrary, setSyncWithLibrary] = useState(true);
return (
<>
{/* I don't care what you think the "right" way to write "keybinds" is, I simply refuse to refer to it as "keybindings" */}
>
);
};