Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
docs(page templates): add examples for account pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthomp committed May 28, 2018
1 parent 7958867 commit 6fac4d8
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```jsx
<ForgotPasswordPage />
```
3 changes: 3 additions & 0 deletions src/page_templates/account/LoginPage/LoginPage.examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```jsx
<LoginPage />
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```jsx
<RegisterPage />
```
14 changes: 14 additions & 0 deletions styleguide.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,20 @@ module.exports = {
{
name: "Page Templates",
sections: [
{
name: "Login Page",
components: "src/page_templates/account/LoginPage/*.react.{js,jsx}",
},
{
name: "Register Page",
components:
"src/page_templates/account/RegisterPage/*.react.{js,jsx}",
},
{
name: "Forgot Password Page",
components:
"src/page_templates/account/ForgotPasswordPage/*.react.{js,jsx}",
},
{
name: "Errors",
components: "src/page_templates/errors/**/*.react.{js,jsx}",
Expand Down

0 comments on commit 6fac4d8

Please sign in to comment.