我在项目中使用样式化组件,并且刚刚添加了反应通知。当我尝试使用样式化组件来设置我的 NotificationContainer 及其后代的样式时。相反,我得到了一个没有样式的基本 NotificationContainer。我犯了一个错误,还是反应通知根本不兼容?
import React, { Component } from 'react'
import {NotificationContainer, NotificationManager} from 'react-notifications';
import styled from "styled-components";
const StyledNotificationContainer = styled(NotificationContainer)`
background-color: orange;
`
export default class Example extends Component{
render(){
return (
<StyledNotificationContainer />
)
}
componentDidMount(){
NotificationManager.info('Example')
}
}