feat(saju-ui-v2): saju.desktop.jsx — 4탭 유지 + max-width 900 컨테이너

This commit is contained in:
2026-05-27 07:42:50 +09:00
parent da694266d4
commit f8874b2aea

View File

@@ -0,0 +1,10 @@
import React from 'react';
import SajuMobile from './saju.mobile.jsx';
export default function SajuDesktop({ reading }) {
return (
<div style={{ maxWidth: 900, margin: '0 auto' }}>
<SajuMobile reading={reading} />
</div>
);
}