Skip to content

Commit b5249da

Browse files
committed
fixed living style guide static links
1 parent b3c5957 commit b5249da

File tree

8 files changed

+25
-37
lines changed

8 files changed

+25
-37
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export const SFCCounter: React.SFC<SFCCounterProps> = (props) => {
154154

155155
```
156156
157-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/#sfccounter)
157+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/#sfccounter)
158158
159159
[⇧ back to top](#table-of-contents)
160160
@@ -180,7 +180,7 @@ export const SFCSpreadAttributes: React.SFC<SFCSpreadAttributesProps> = (props)
180180

181181
```
182182
183-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/#sfcspreadattributes)
183+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/#sfcspreadattributes)
184184
185185
[⇧ back to top](#table-of-contents)
186186
@@ -228,7 +228,7 @@ export class StatefulCounter extends React.Component<StatefulCounterProps, State
228228

229229
```
230230
231-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/#statefulcounter)
231+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/#statefulcounter)
232232
233233
[⇧ back to top](#table-of-contents)
234234
@@ -292,7 +292,7 @@ export const StatefulCounterWithInitialCount: React.ComponentClass<StatefulCount
292292

293293
```
294294
295-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/#statefulcounterwithinitialcount)
295+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/#statefulcounterwithinitialcount)
296296
297297
[⇧ back to top](#table-of-contents)
298298
@@ -326,7 +326,7 @@ export class GenericList<T> extends React.Component<GenericListProps<T>, {}> {
326326

327327
```
328328
329-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/##genericlist)
329+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/##genericlist)
330330
331331
[⇧ back to top](#table-of-contents)
332332
@@ -997,7 +997,7 @@ export const getFilteredTodos = createSelector(
997997
998998
[⟩⟩⟩ styleguide.config.js](/playground/src/styleguide.config.js)
999999
1000-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/)
1000+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/)
10011001
10021002
[⇧ back to top](#table-of-contents)
10031003
File renamed without changes.

docs/styleguide/build/bundle.b342c5a9.js docs/build/bundle.0b1b071d.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7-
<title>React & Redux in TypeScript - Static Typing Guide</title>
8-
</head>
9-
<body>
10-
<a href="/styleguide">Living Style Guide</a>
11-
</body>
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>React & Redux in TypeScript - Component Typing Patterns</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
</head>
8+
<body>
9+
<div id="app"></div>
10+
<script type="text/javascript" src="build/bundle.0b1b071d.js"></script></body>
1211
</html>

docs/markdown/1_react.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ const handleChange: React.ReactEventHandler<HTMLInputElement> = (ev) => { ...
6161
6262
::example='../../playground/src/components/sfc-counter.tsx'::
6363
64-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/#sfccounter)
64+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/#sfccounter)
6565
6666
[⇧ back to top](#table-of-contents)
6767
6868
#### - spreading attributes [link](https://facebook.github.io/react/docs/jsx-in-depth.html#spread-attributes)
6969
7070
::example='../../playground/src/components/sfc-spread-attributes.tsx'::
7171
72-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/#sfcspreadattributes)
72+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/#sfcspreadattributes)
7373
7474
[⇧ back to top](#table-of-contents)
7575
@@ -81,15 +81,15 @@ const handleChange: React.ReactEventHandler<HTMLInputElement> = (ev) => { ...
8181
8282
::example='../../playground/src/components/stateful-counter.tsx'::
8383
84-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/#statefulcounter)
84+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/#statefulcounter)
8585
8686
[⇧ back to top](#table-of-contents)
8787
8888
#### - with default props
8989
9090
::example='../../playground/src/components/stateful-counter-with-initial-count.tsx'::
9191
92-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/#statefulcounterwithinitialcount)
92+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/#statefulcounterwithinitialcount)
9393
9494
[⇧ back to top](#table-of-contents)
9595
@@ -103,7 +103,7 @@ const handleChange: React.ReactEventHandler<HTMLInputElement> = (ev) => { ...
103103
104104
::example='../../playground/src/components/generic-list.tsx'::
105105
106-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/##genericlist)
106+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/##genericlist)
107107
108108
[⇧ back to top](#table-of-contents)
109109

docs/markdown/3_tools.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
[⟩⟩⟩ styleguide.config.js](/playground/src/styleguide.config.js)
77

8-
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/styleguide/)
8+
[⟩⟩⟩ demo](https://piotrwitek.github.io/react-redux-typescript-guide/)
99

1010
[⇧ back to top](#table-of-contents)

docs/styleguide/index.html

-11
This file was deleted.

playground/styleguide.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ webpackConfig.resolve.alias = { '@src': path.join(__dirname, 'src') };
77

88
module.exports = {
99
showUsage: false,
10-
styleguideDir: '../docs/styleguide',
11-
title: 'Component Typing Patterns in React + TypeScript',
10+
styleguideDir: '../docs/',
11+
title: 'React & Redux in TypeScript - Component Typing Patterns',
1212
ignore: ['**/*.usage.tsx'],
1313
sections: [
1414
{

0 commit comments

Comments
 (0)