芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/.cache/admin/src/containers/Theme/index.js
import React from 'react'; import { ThemeProvider } from 'styled-components'; import PropTypes from 'prop-types'; import themes from '../../themes'; const Theme = ({ children }) => { return
{children}
; }; Theme.propTypes = { children: PropTypes.node.isRequired, }; export default Theme;