Skip to content

Commit a15f75a

Browse files
author
Gobinath Manokaran
committed
Changed from type to interface for component props
1 parent 4c7742b commit a15f75a

File tree

1 file changed

+2
-2
lines changed
  • packages/app/src/app/pages/Sandbox/Editor/Workspace/Project

1 file changed

+2
-2
lines changed

packages/app/src/app/pages/Sandbox/Editor/Workspace/Project/Keywords.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import { useOvermind } from 'app/overmind';
88

99
import { Item } from './elements';
1010

11-
type Props = {
11+
interface IKeywordsProps {
1212
editable?: boolean;
1313
};
14-
export const Keywords: FunctionComponent<Props> = ({ editable }) => {
14+
export const Keywords: FunctionComponent<IKeywordsProps> = ({ editable }) => {
1515
const {
1616
actions: {
1717
workspace: { tagChanged, tagsChanged },

0 commit comments

Comments
 (0)