Skip to content

Commit

Permalink
refactor: directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ochairo committed Mar 24, 2024
1 parent 8c62f2b commit b64f29c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,17 @@ the concepts themselves are complex and hard to understand.
├── src
│ ├── app # Application code
│ │ ├── core # - Core application code
│ │ │ ├── environment # - Environment manager code
│ │ │ ├── http # - HTTP-related code
│ │ │ └── router # - Router code
│ │ ├── shared # - Shared components and utilities
<<<<<<< Updated upstream
│ │ │ ├── router # - Router
│ │ │ ├── styles # - Stylesheets
=======
│ │ │ ├── styles # - Shared stylesheets
>>>>>>> Stashed changes
│ │ │ └── ui-components # - Reusable UI components
│ │ │ ├── atoms # - Basic UI elements
│ │ │ ├── molecules # - Simple component compositions
Expand Down
Empty file.
Empty file added src/app/core/http/.gitkeep
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { setRoutes } from "@shared/router/router";
import { setRoutes } from "./core/router/router";
import { routes } from "./routes";

const rootElement = document.getElementById("root")!;
Expand Down
2 changes: 1 addition & 1 deletion src/app/routes.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import errorModule from "@error/error.module";
import { RouteConfig } from "@shared/router/router";
import showcaseModule from "@showcase/showcase.module";
import { RouteConfig } from "./core/router/router";

// LazyLoad feature modules
export const routes: RouteConfig[] = [
Expand Down

0 comments on commit b64f29c

Please sign in to comment.