I'm using styled components in a project and have just added react-notifications. When I try to use styled components to style my NotificationContainer and its descendants. I instead get an un-styled base NotificationContainer. Am I making a mistake, or is react-notifications simply incompatible?
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')
}
}