Skip to content

Commit 926b341

Browse files
committed
Use standard theme for example
1 parent ecb8951 commit 926b341

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

examples/example-site/content/blog/hello-world/index.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ date: "2015-05-01T22:12:03.284Z"
44
description: "Hello World"
55
---
66

7+
8+
79
```jsx
810
const Wrapper = styled.section`
911
border-radius: 4px;
@@ -16,9 +18,9 @@ const Wrapper = styled.section`
1618
}
1719
`
1820

19-
export default function MyComponent({ children }) = (
20-
<Wrapper>{children}</Wrapper>
21-
)
21+
export default function MyComponent({ children }) {
22+
return <Wrapper>{children}</Wrapper>;
23+
}
2224
```
2325

2426
```js

examples/example-site/gatsby-config.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,8 @@ module.exports = {
3232
{
3333
resolve: path.resolve(__dirname, '../..'),
3434
options: {
35-
colorTheme: {
36-
defaultTheme: 'Ayu Mirage',
37-
prefersDarkTheme: 'Ayu Dark',
38-
},
3935
injectStyles: true,
4036
extensions: [
41-
{ identifier: 'teabyii.ayu', version: '0.18.0' },
4237
{
4338
identifier: 'jpoissonnier.vscode-styled-components',
4439
version: '0.0.26',

0 commit comments

Comments
 (0)