MCPcopy Create free account
hub / github.com/ScattrdBlade/bigFileUpload / SettingGroup

Function SettingGroup

settings.tsx:423–437  ·  view source on GitHub ↗
(props: {
    children: React.ReactNode;
    description?: string;
    name: string;
})

Source from the content-addressed store, hash-verified

421}
422
423function SettingGroup(props: {
424 children: React.ReactNode;
425 description?: string;
426 name: string;
427}) {
428 const { children, description, name } = props;
429
430 return (
431 <SettingsSection id={name} name={name} description={description ?? ""}>
432 <div className={cl("group")}>
433 {children}
434 </div>
435 </SettingsSection>
436 );
437}
438
439function SettingSwitch(props: {
440 checked: boolean;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected