feat(saju-ui-v2): today.desktop.jsx — max-width 720 wrapper

This commit is contained in:
2026-05-27 07:44:52 +09:00
parent 9bc31d23f5
commit 6fdc2593be

View File

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