Move app settings (#765)

* refactor: migrate app settings

---------

Co-authored-by: Carlos Valente <carlosvalente@pm.me>
This commit is contained in:
Bianca Procopio
2024-03-03 11:06:21 -07:00
committed by GitHub
parent 088927bbbb
commit 10d3986832
8 changed files with 216 additions and 143 deletions
@@ -0,0 +1,12 @@
import * as Panel from '../PanelUtils';
import GeneralPanelForm from './GeneralPanelForm';
export default function GeneralPanel() {
return (
<>
<Panel.Header>Settings</Panel.Header>
<GeneralPanelForm />
</>
);
}