Skip to content

Instantly share code, notes, and snippets.

@sergey-sign
Created October 17, 2016 13:45
Show Gist options
  • Save sergey-sign/44f3e78f75820becace3f2165db9d8b3 to your computer and use it in GitHub Desktop.
Save sergey-sign/44f3e78f75820becace3f2165db9d8b3 to your computer and use it in GitHub Desktop.
import React from 'react';
import styles from './table.css';
export default class Table extends React.Component {
render () {
return <div className={styles.table}>
<div className={styles.row}>
<div className={styles.cell}>A0</div>
<div className={styles.cell}>B0</div>
</div>
</div>;
}
}
<div class="table__table___32osj">
<div class="table__row___2w27N">
<div class="table__cell___1oVw5">A0</div>
<div class="table__cell___1oVw5">B0</div>
</div>
</div>
@rkovalov
Copy link

I like it 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment