📜  材质 ui 样式的组件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:24.726000             🧑  作者: Mango

代码示例2
const MyStyledButton = styled(Button)`
  background-color: red;
  color: white;
`;

export default function App() {
  return (
    
      
Foo
); }