Skip to content

Commit e3c9050

Browse files
committed
Rename Food component to Cooking
Renamed the Food component and its export to Cooking for better clarity and consistency with the file and directory naming.
1 parent b441ccc commit e3c9050

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Components/AchieveTabs/Cooking/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { cookingDataType } from 'types/displayDataTypes';
22
import './Cooking.css';
33
import { AchievementItem,ItemWithCounter } from '@components/common';
44

5-
const Food = ( {cookedItems, knownRecipes, alreadyCookedRecipes, totalRecipes, achievements} : cookingDataType) => {
5+
const Cooking = ( {cookedItems, knownRecipes, alreadyCookedRecipes, totalRecipes, achievements} : cookingDataType) => {
66
return (
77
<div className="progress-container">
88
<span className="a-title">
@@ -46,4 +46,4 @@ const Food = ( {cookedItems, knownRecipes, alreadyCookedRecipes, totalRecipes, a
4646
);
4747
};
4848

49-
export default Food;
49+
export default Cooking;

0 commit comments

Comments
 (0)