Skip to content

Commit

Permalink
fix(index.tsx): fixing the title in the homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
Abod-Akhras authored and abod-akhras committed Oct 20, 2021
1 parent 23f50b3 commit b90c7db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "v1.1.1",
"version": "v1.2.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ export interface Props extends HTMLAttributes<HTMLDivElement> {
* A custom Thing component. Neat!
*/
export const Thing: FC<Props> = ({ children }) => {
return <div>{children || `Sample Message`}</div>;
return <div>{children || `AppID Team`}</div>;
};

0 comments on commit b90c7db

Please sign in to comment.