Skip to content

Instantly share code, notes, and snippets.

@locona
Created June 1, 2018 03:19
Show Gist options
  • Save locona/aa7a5a94922215dfc4116180787d663a to your computer and use it in GitHub Desktop.
Save locona/aa7a5a94922215dfc4116180787d663a to your computer and use it in GitHub Desktop.
<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