feat(saju-ui-v2): match.desktop.jsx — max-width 900 wrapper

This commit is contained in:
2026-05-27 07:47:12 +09:00
parent 29f37a1642
commit 3c64a4604f

View File

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