|
|
@ -24,8 +24,7 @@ const pStyle = {
|
|
|
|
marginBottom: 16,
|
|
|
|
marginBottom: 16,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const DescriptionItem = ({ title, content }) => {
|
|
|
|
const DescriptionItem = ({ title, content }) => (
|
|
|
|
return (
|
|
|
|
|
|
|
|
<div
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
style={{
|
|
|
|
fontSize: 14,
|
|
|
|
fontSize: 14,
|
|
|
@ -45,8 +44,7 @@ const DescriptionItem = ({ title, content }) => {
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
{content}
|
|
|
|
{content}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class App extends React.Component {
|
|
|
|
class App extends React.Component {
|
|
|
|
state = { visible: false };
|
|
|
|
state = { visible: false };
|
|
|
@ -185,9 +183,3 @@ class App extends React.Component {
|
|
|
|
|
|
|
|
|
|
|
|
ReactDOM.render(<App />, mountNode);
|
|
|
|
ReactDOM.render(<App />, mountNode);
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
#_hj_feedback_container{
|
|
|
|
|
|
|
|
display:none
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|