-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds a cell component which provides basic styling for cell content.
- Loading branch information
Poltergeist
committed
Jul 6, 2018
1 parent
cbb0b6a
commit 2676958
Showing
3 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export { Badge } from "./badge"; | ||
export { BadgeButton } from "./badge"; | ||
export { Column, Table } from "./table"; | ||
export { Column, Table, Cell } from "./table"; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import styled from "react-emotion"; | ||
|
||
export default styled("div")` | ||
height: 100%; | ||
box-sizing: border-box; | ||
padding: 7px; | ||
`; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export { default as Table } from "./components/Table"; | ||
export { default as Column } from "./components/Column"; | ||
export { default as Cell } from "./components/Cell"; |