-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit 1f79e20.
- Loading branch information
Showing
12 changed files
with
254 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import AddNewBudget from '@/component/AddNewBudget'; | ||
|
||
const AddNewBudgetPage = () => { | ||
const addNewBudget = () => { | ||
return <AddNewBudget />; | ||
}; | ||
export default AddNewBudgetPage; | ||
export default addNewBudget; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import AddTransaction from '@/component/AddTransaction'; | ||
|
||
const AddTransactionPage = () => { | ||
const addTransaction = () => { | ||
return <AddTransaction />; | ||
}; | ||
export default AddTransactionPage; | ||
export default addTransaction; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import DashBoard from '@/component/Dashboard'; | ||
|
||
const DashBoardPage = () => { | ||
const dashbaord = () => { | ||
return <DashBoard />; | ||
}; | ||
export default DashBoardPage; | ||
export default dashbaord; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
|
||
import './globals.css' | ||
import type {Metadata} from 'next' | ||
import {Inter} from 'next/font/google' | ||
import type { Metadata } from 'next' | ||
import { Inter } from 'next/font/google' | ||
|
||
const inter = Inter({subsets: ['latin']}) | ||
const inter = Inter({ subsets: ['latin'] }) | ||
|
||
export const metadata: Metadata = { | ||
title: 'budget-pro', | ||
description: 'This is budget app. Develop by Tech Twig team', | ||
title: 'Create Next App', | ||
description: 'Generated by create next app', | ||
} | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode | ||
children, | ||
}: { | ||
children: React.ReactNode | ||
}) { | ||
return ( | ||
<html lang="en"> | ||
<body className={inter.className}> | ||
return ( | ||
<html lang="en"> | ||
<body className={inter.className}> | ||
{children} | ||
</body> | ||
</html> | ||
) | ||
</body> | ||
</html> | ||
) | ||
} |
Oops, something went wrong.