Skip to content

Commit

Permalink
#34: Fine adjustment to _Default.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
espen42 committed Sep 14, 2021
1 parent 9211139 commit 669ff4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/pagetypes/_Default.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ const DefaultPage = (props: Props) => {
<div style={{padding: "10px"}}>
<h2>{props.displayName}</h2>
<h5>Props:</h5>
<pre>{JSON.stringify(props, null, 2)}</pre>
<pre style={{width:"100%", whiteSpace:"pre-wrap", wordWrap: "break-word"}}>{JSON.stringify(props, null, 2)}</pre>
<br />
<hr />
<p style={{fontSize: ".7em", color: "#bbb"}}>Renderer: _Default.tsx</p>
</div>
Expand Down

0 comments on commit 669ff4c

Please sign in to comment.