Files
upage-git/app/components/upage/Index.tsx
2025-09-24 17:02:44 +08:00

12 lines
183 B
TypeScript

import { UPageBrand } from './Brand';
import { UPageShare } from './Share';
export function UPageIndex() {
return (
<>
<UPageShare />
<UPageBrand />
</>
);
}