Skip to content

Commit

Permalink
update:Add->ConfigPage
Browse files Browse the repository at this point in the history
  • Loading branch information
VanSonNguyen522 committed May 19, 2024
1 parent 9599303 commit a3521d4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/create-prompt/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { Form } from "../../components";
import { toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';

// Create CreatePrompt Components
const CreatePrompt = () => {

const router = useRouter();
Expand Down
2 changes: 1 addition & 1 deletion app/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import 'react-toastify/dist/ReactToastify.css';
// title: "PromptApp",
// description: "Discover & Share AI Prompts",
// };

// Create RootLayout Page Componenst
const RootLayout = ({ children }) => {
return(
<html lang="en">
Expand Down
1 change: 1 addition & 0 deletions app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import React, { useState, useEffect } from 'react';
import { Feed } from '@/components';

// Create HomePage Components
const HomePage = () => {

const [showFeed, setShowFeed] = useState(false);
Expand Down
1 change: 1 addition & 0 deletions app/profile/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { Profile } from '@/components';
import { toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';

// Create MyProfile COmponents
const MyProfile = () => {

const router = useRouter();
Expand Down
1 change: 1 addition & 0 deletions app/update-prompt/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Form from "../../components/Form";
import { toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';

// Create UpdatePromptPage Components
const UpdatePrompt = () => {

const router = useRouter();
Expand Down

0 comments on commit a3521d4

Please sign in to comment.