Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design1
/
MAC_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
오윤석
2021-05-11 17:07:46 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
e58bddcd7a0b8e0492e90896e27a63f0b4fe23af
e58bddcd
2 parents
7f36d25a
92c98c14
Merge branch 'feat/web' of
http://khuhub.khu.ac.kr/2021-1-capstone-design1/MAC_P…
…roject1 into feat/web
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
src/pages/index.tsx
src/pages/index.tsx
View file @
e58bddc
...
...
@@ -3,11 +3,13 @@ import Image from "components/Image";
import styled from "styled-components";
import dynamic from "next/dynamic";
import { useState } from "react";
import GifEditor from "components/GifEditor";
const ToastEditor = dynamic(() => import("components/ToastEditor"), {
ssr: false,
});
const GifEditor = dynamic(() => import("components/GifEditor"), {
ssr: false,
});
const Index = () => {
const [isEditorOpened, setIsEditorOpened] = useState(false);
...
...
Please
register
or
login
to post a comment