Skip to content

Commit

Permalink
next setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ArslanKamchybekov committed Sep 11, 2024
1 parent b1bd334 commit 51cd861
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 4 deletions.
7 changes: 6 additions & 1 deletion backend/src/user/user.controller.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Controller, Get } from '@nestjs/common';
import { Controller, Delete, Get } from '@nestjs/common';
import { UserService } from './user.service';

@Controller('user')
Expand All @@ -9,4 +9,9 @@ export class UserController {
get(): string {
return "User is running!";
}

@Delete("delete")
delete(): string {
return "delete!";
}
}
Binary file removed frontend/src/app/fonts/GeistMonoVF.woff
Binary file not shown.
Binary file removed frontend/src/app/fonts/GeistVF.woff
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from "react";
import { AppProps } from "next/app";
import ReduxProvider from "../components/ReduxProvider";
import "../styles/globals.css";

const MyApp = ({ Component, pageProps }: AppProps) => {
return (
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/app/page.tsx → frontend/src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';


const Home: React.FC = () => {
return (
<div>
<h1>Hello World</h1>
<h1>Home</h1>
</div>
);
}
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 51cd861

Please sign in to comment.