mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-14 13:47:09 +00:00
13 lines
173 B
TypeScript
13 lines
173 B
TypeScript
import React from 'react';
|
|
import { Outlet } from '@umijs/max';
|
|
|
|
const market: React.FC = () => {
|
|
return (
|
|
<>
|
|
<Outlet />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default market;
|