Skip to content

Instantly share code, notes, and snippets.

<table>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
import * as _ from 'lodash';
import * as React from 'react';
import { Chip, Avatar } from 'material-ui';
import { connect } from 'react-redux';
import { light, primary, white } from '../../themes/light';
type ActivitiesArray = Array<Adventurs.Activity>;
class CActivitiesSelector extends React.Component<{
@zinas
zinas / index.html
Created November 4, 2012 18:23
Combining fluid and fixed elements
<div class="row with-description clearfix">
<div class="fluid">
<input type="text" value="" placeholder="here is your fluid element" />
</div>
<div class="fixed">
And here is your fixed description
</div>
</div>