chore: switch to double quotes

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-03-31 10:05:50 +02:00
parent 494f97f2a4
commit bd2c7523ad
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -19,8 +19,8 @@ To use MyGroupsSidebarItem you'll need to add it to your `Root.tsx` like this:
//...
<SidebarItem icon={HomeIcon} to="catalog" text="Home" />
+ <MyGroupsSidebarItem
+ singularTitle='My Squad'
+ pluralTitle='My Squads'
+ singularTitle="My Squad"
+ pluralTitle="My Squads"
+ icon={GroupIcon}
+ />
//...
+2 -2
View File
@@ -36,8 +36,8 @@ To use the MyGroupsSidebarItem you'll need to add it to your `Root.tsx` - found
//...
<SidebarItem icon={HomeIcon} to="catalog" text="Home" />
+ <MyGroupsSidebarItem
+ singularTitle='My Squad'
+ pluralTitle='My Squads'
+ singularTitle="My Squad"
+ pluralTitle="My Squads"
+ icon={GroupIcon}
+ />
//...