feat: 配置页面组件

This commit is contained in:
CrescentLeaf
2025-10-07 22:31:34 +08:00
parent 96ca578c70
commit 4eff829a30
7 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
export default function PreferenceLayout({ children, ...props }) {
return <mdui-list style={{
marginLeft: '15px',
marginRight: '15px',
}} {...props}>
{children}
</mdui-list>
}