Skip to content

Commit 021611b

Browse files
committed
feat: move transactions page to features module and clean up pages dir
Move TransactionsPage from pages/transactions/ to features/transactions/pages/, create a feature module index, update App.tsx import to use @/features/transactions, and remove the now-empty pages/ directory.
1 parent 5f90221 commit 021611b

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

frontend/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { ForecastingPage } from '@/features/forecasting'
2828
import { DashboardPage } from '@/features/dashboard'
2929
import { ManifestsPage } from '@/features/manifests'
3030
import { McpConfigPage } from '@/features/mcp-config'
31-
import { TransactionsPage } from '@/pages/transactions'
31+
import { TransactionsPage } from '@/features/transactions'
3232

3333
// Placeholder page components - replaced as each page task is implemented
3434
function PlaceholderPage({ title }: { title: string }) {
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Public API for transactions module
2+
export { TransactionsPage } from './pages/index'
File renamed without changes.

0 commit comments

Comments
 (0)