mirror of
https://github.com/tencentmusic/supersonic.git
synced 2026-01-07 10:03:06 +08:00
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
import React from 'react';
|
|
|
|
const classManager: React.FC = ({ children }) => {
|
|
return <div>{children}</div>;
|
|
};
|
|
|
|
export default classManager;
|