import React, { FC } from 'react' export interface IAppsProps { } const Apps: FC = ({ }) => { return (
apps
) } export default React.memo(Apps)