Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update typescript document to match with current types #679

Merged
merged 14 commits into from
Jun 7, 2018
Prev Previous commit
Next Next commit
Fix error in string syntax and remove some code in an example that is…
…n't used
emmatown authored and Ailrun committed Jun 5, 2018
commit 172236470a888b54bfc49571e9ac3c6a9212d42b
12 changes: 3 additions & 9 deletions docs/typescript.md
Original file line number Diff line number Diff line change
@@ -16,9 +16,9 @@ const titleStyle = css({
});

const subtitleStyle = css`
boxSizing: 'border-box';
width: 100;
height: 60;
box-sizing: border-box;
width: 100px;
height: 60px;
`;
```

@@ -33,12 +33,6 @@ const titleStyle = css({
width: 300,
height: 200,
});

const subtitleStyle = css`
boxSizing: 'border-box';
width: 100;
height: 60;
`;
```

## react-emotion