-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(hast-util-to-jsx.js): files with one element thowes error
change the check to test that ther is more that 1 element, to more that 0 elements.
- Loading branch information
1 parent
bb346b8
commit 6a74a84
Showing
4 changed files
with
27 additions
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: react development env | ||
--- | ||
|
||
# react development env |
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
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,20 @@ | ||
/*--- | ||
react development env | ||
---*/ | ||
import React from 'react'; | ||
import headline from 'semantic-ui-react/headline'; | ||
|
||
const frontMatter = { | ||
title: 'react development env' | ||
}; | ||
|
||
export default class Print extends React.PureComponent { | ||
render() { | ||
const props = this.props; | ||
return ( | ||
<div> | ||
<headline>react development env</headline> | ||
</div> | ||
); | ||
} | ||
} |