Skip to content

Commit

Permalink
Version 0.2.15 Support for React versions where import React is manda…
Browse files Browse the repository at this point in the history
…tory
  • Loading branch information
neokeld committed Mar 14, 2021
1 parent 598a93c commit 4831d48
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions components/Card/Card.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import React from 'react';
import styled from '@emotion/styled';
import {
cardTheme,
Expand Down
1 change: 1 addition & 0 deletions components/Divider/Divider.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import React from 'react';
import styled from '@emotion/styled';

const DividerRoot = styled.div`
Expand Down
1 change: 1 addition & 0 deletions components/Modal/CustomButton.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import React from 'react';
import { Button } from '../Button';

export const CustomButton = ({onClick, children}) => (
Expand Down
2 changes: 1 addition & 1 deletion components/Modal/Modal.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from 'react';
import React, { Component } from 'react';
import styled from "@emotion/styled";

import { Box } from '../Box';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "composion",
"version": "0.2.13",
"version": "0.2.15",
"description": "Component Library",
"main": "dist/composion.js",
"module": "dist/composion.es.js",
Expand Down

0 comments on commit 4831d48

Please sign in to comment.