Skip to content

Commit 53d3fbb

Browse files
authored
Cleanup
1 parent d2c04b6 commit 53d3fbb

19 files changed

+17
-26
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
**The most powerful and flexible grid system for _React_**
1010

1111
_React Rasta_ is a 12 column grid system built on top of `styled-components` which works underneath
12-
with the _CSS flexbox_ layout. _React Rasta_ implements all features from the _Bootstrap V4.1_ grid
13-
system but adds more flexibility on top of it.
12+
with the _CSS flexbox_ layout.
1413

1514
## Getting Started
1615

src/__utils__/Story.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
// These imports are needed for declaration files
2-
import * as _React from "react";
3-
import * as _StyledComponents from "styled-components";
4-
// -------------------------------------------------------------------
51
import styled from "styled-components";
62
import StoryProperties from "./StoryProperties";
73
import Column from "../column";

src/__utils__/Title.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
// These imports are needed for declaration files
2-
import * as _React from "react";
3-
import * as _StyledComponents from "styled-components";
4-
// -------------------------------------------------------------------
51
import styled from "styled-components";
62

73
const Title = styled.div`

src/break/Break.story.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as React from "react";
1+
import React from "react";
22
import { storiesOf } from "@storybook/react";
33
import { action } from "@storybook/addon-actions";
44
import Story from "../__utils__/Story";

src/break/Break.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import "jest-styled-components";
22
import { shallow } from "enzyme";
3-
import * as React from "react";
3+
import React from "react";
44
import styled from "styled-components";
55
import Break from "./Break";
66

src/column/Column.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import "jest-styled-components";
22
import { shallow } from "enzyme";
3-
import * as React from "react";
3+
import React from "react";
44
import styled from "styled-components";
55
import Column from "./Column";
66

src/column/ColumnAlignSelf.story.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as React from "react";
1+
import React from "react";
22
import { storiesOf } from "@storybook/react";
33
import { action } from "@storybook/addon-actions";
44
import Story from "../__utils__/Story";

src/column/ColumnFlex.story.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as React from "react";
1+
import React from "react";
22
import { storiesOf } from "@storybook/react";
33
import { action } from "@storybook/addon-actions";
44
import Story from "../__utils__/Story";

src/column/ColumnOffset.story.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as React from "react";
1+
import React from "react";
22
import { storiesOf } from "@storybook/react";
33
import { action } from "@storybook/addon-actions";
44
import Story from "../__utils__/Story";

src/column/ColumnOrder.story.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as React from "react";
1+
import React from "react";
22
import { storiesOf } from "@storybook/react";
33
import { action } from "@storybook/addon-actions";
44
import Story from "../__utils__/Story";

0 commit comments

Comments
 (0)