Created
June 1, 2018 03:19
-
-
Save locona/aa7a5a94922215dfc4116180787d663a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<Card style={{ marginLeft: '64px' }}> | |
<PageHeader | |
position="static" | |
color="default" | |
> | |
<Toolbar style={{ width: '30%' }}> | |
<Typography variant="title" color="inherit" style={{ minWidth: '220px' }}> | |
</Typography> | |
<TrackingWebNew handleSubmit={handleSubmit} /> | |
<Button color="default" style={{ minWidth: '100px' }}> | |
<DeleteIcon /> | |
Remove | |
</Button> | |
</Toolbar> | |
</PageHeader> | |
<Sidebar /> | |
<List> | |
{trackingwebs.map((o, idx) => ( | |
<ListItem | |
key={idx} | |
role={undefined} | |
dense | |
button | |
onClick={this.handleToggle(o.id)} | |
> | |
<Checkbox | |
checked={this.state.checked.indexOf(o.id) !== -1} | |
tabIndex={-1} | |
disableRipple | |
/> | |
<Link to={``}> | |
<ListItemText primary={o.fqdn} /> | |
</Link> | |
<ListItemSecondaryAction> | |
<IconButton aria-label="Comments"> | |
<DeleteIcon /> | |
</IconButton> | |
</ListItemSecondaryAction> | |
</ListItem> | |
))} | |
</List> | |
</Card> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment