{
);
};
-export const Header = inject('signals', 'store')(
- hooksObserver(HeaderComponent)
-);
+export default HeaderComponent
From 4c7742bbd060d7d46ca07b24ab61fd0aa5edbf0f Mon Sep 17 00:00:00 2001
From: Gobinath Manokaran <>
Date: Sat, 19 Oct 2019 12:26:21 +0530
Subject: [PATCH 2/3] added contributor
---
.all-contributorsrc | 9 +++++++++
README.md | 4 ++--
2 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/.all-contributorsrc b/.all-contributorsrc
index 927d61efac7..c0113d186d1 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -1394,6 +1394,15 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "Gobinath-Manokaran",
+ "name": "Gobinath-Manokaran",
+ "avatar_url": "https://avatars2.githubusercontent.com/u/6711914?v=4",
+ "profile": "https://github.com/Gobinath-Manokaran",
+ "contributions": [
+ "code"
+ ]
}
],
"contributorsPerLine": 7,
diff --git a/README.md b/README.md
index 830a3d1f75e..d259dcf6fad 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# [CodeSandbox](https://codesandbox.io) [](https://spectrum.chat/codesandbox) [](#contributors-) [](https://circleci.com/gh/codesandbox/codesandbox-client) [](https://www.browserstack.com/automate/public-build/cVJuczlJWUtqWXhIbFN1ZjVQekF4NzNsd3phNEZRaGlWU0pHYVVkdGRFWT0tLXFtTVhaOWRySmN0ZG5QVDNDQ0g5Z0E9PQ==--79fe3eae4f149a400d396c9b12d3988f685785cf) [](http://makeapullrequest.com) [](http://www.firsttimersonly.com/) [](https://lerna.js.org/)
+# [CodeSandbox](https://codesandbox.io) [](https://spectrum.chat/codesandbox) [](#contributors-) [](https://circleci.com/gh/codesandbox/codesandbox-client) [](https://www.browserstack.com/automate/public-build/cVJuczlJWUtqWXhIbFN1ZjVQekF4NzNsd3phNEZRaGlWU0pHYVVkdGRFWT0tLXFtTVhaOWRySmN0ZG5QVDNDQ0g5Z0E9PQ==--79fe3eae4f149a400d396c9b12d3988f685785cf) [](http://makeapullrequest.com) [](http://www.firsttimersonly.com/) [](https://lerna.js.org/)
[](#backers)
[](#sponsors)
@@ -232,10 +232,10 @@ Thanks goes to these wonderful people
 Chinmay Chaudhary 💻 |
 Sakthivel Sengodan Sapient 💻 |
 vanya829 💻 |
-
 Lakhan Samani 💻 |
 Het Patel 💻 |
+  Gobinath-Manokaran 💻 |
From a15f75a3617c14e29d1058ab6916c48f2c9c72f8 Mon Sep 17 00:00:00 2001
From: Gobinath Manokaran <>
Date: Sat, 19 Oct 2019 13:53:40 +0530
Subject: [PATCH 3/3] Changed from type to interface for component props
---
.../app/pages/Sandbox/Editor/Workspace/Project/Keywords.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/app/src/app/pages/Sandbox/Editor/Workspace/Project/Keywords.tsx b/packages/app/src/app/pages/Sandbox/Editor/Workspace/Project/Keywords.tsx
index 14df92521df..edd46bc12ca 100644
--- a/packages/app/src/app/pages/Sandbox/Editor/Workspace/Project/Keywords.tsx
+++ b/packages/app/src/app/pages/Sandbox/Editor/Workspace/Project/Keywords.tsx
@@ -8,10 +8,10 @@ import { useOvermind } from 'app/overmind';
import { Item } from './elements';
-type Props = {
+interface IKeywordsProps {
editable?: boolean;
};
-export const Keywords: FunctionComponent
= ({ editable }) => {
+export const Keywords: FunctionComponent = ({ editable }) => {
const {
actions: {
workspace: { tagChanged, tagsChanged },