initial redux work

This commit is contained in:
Cogent Apps
2023-03-10 14:00:37 -08:00
committed by GitHub
parent 86f6acb62d
commit 5bfcd9e091
25 changed files with 794 additions and 529 deletions

View File

@@ -0,0 +1,13 @@
export default function SettingsOption(props: {
focused?: boolean;
heading?: string;
children?: any;
span?: number;
}) {
return (
<section className={props.focused ? 'focused' : ''}>
{props.heading && <h3>{props.heading}</h3>}
{props.children}
</section>
);
}