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:12 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
92c98c1470081e1363c8f599ae8c30d15f7fe091
92c98c14
1 parent
ff2343ac
gif editor 다이나믹 임포트
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 @
92c98c1
...
...
@@ -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