This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Title": "Sonnenalp Newsletter", | |
"Sections": [ | |
{ | |
"Id": 1, | |
"Order": 1, | |
"Settings": { | |
"Width": 600, | |
"Align": { | |
"Inherit": false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ExpansionPanel from 'ui/core/ExpansionPanel/ExpansionPanel'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import ExpansionPanelDetails from 'ui/core/ExpansionPanel/ExpansionPanelDetails/ExpansionPanelDetails'; | |
import ExpansionPanelSummary from 'ui/core/ExpansionPanel/ExpansionPanelSummary/ExpansionPanelSummary'; | |
import ExpansionPanel from 'ui/core/ExpansionPanel/ExpansionPanel'; | |
export default class ControlledExpansionPanel extends Component { | |
state = { | |
expanded: null, | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import ExpansionPanelDetails from 'ui/core/ExpansionPanel/ExpansionPanelDetails/ExpansionPanelDetails'; | |
import ExpansionPanelSummary from 'ui/core/ExpansionPanel/ExpansionPanelSummary/ExpansionPanelSummary'; | |
import ExpansionPanel from 'ui/core/ExpansionPanel/ExpansionPanel'; | |
export default class SimpleExpansionPanelDemo extends Component { | |
render() { | |
return ( | |
<React.Fragment> | |
<ExpansionPanel defaultOpen={true}> |