diff --git a/README.md b/README.md index 4143f28..9e0e650 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ In this repository I will keep adding the production best practices we should follow in a MERN (MongoDB, Express.js, React.js, and Node.js) project. +![Product List Page](./docs/images/product-list-search-result.png) + ## Technology stack As the name suggests, this repository is built on top of Express.js and React.js, however in the implementation detail, we will find other supporting technologies as well. diff --git a/client/src/App.js b/client/src/App.js index 0f9627c..1b18eb4 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -13,7 +13,7 @@ function App() {
-

Feature flag

+

RBAC MERN Boilerplate

{auth.isAuthenticated && auth.profile &&

{auth.profile.name}

} {auth.isAuthenticated && }
diff --git a/docs/images/product-list-search-result.png b/docs/images/product-list-search-result.png new file mode 100644 index 0000000..78573b0 Binary files /dev/null and b/docs/images/product-list-search-result.png differ