-
-
Notifications
You must be signed in to change notification settings - Fork 803
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d168df1
commit 9f335b8
Showing
3 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
export { default as V010 } from "./v010"; | ||
export { default as V011 } from "./v011"; | ||
export { default as V020 } from "./v020"; | ||
export { default as V021 } from "./v021"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from "react"; | ||
import ReactMarkdown from "react-markdown"; | ||
|
||
const markup = ` | ||
### 🐛 Bug fixes | ||
* Fix max loop duration not working. | ||
* Fix URL sanitization on non-Chrome browsers. | ||
`; | ||
|
||
export default () => <ReactMarkdown source={markup} />; |