moving from hexo theme to my own react design

This commit is contained in:
Kim, Jimin 2021-05-15 00:30:19 +09:00
parent 7ff3176072
commit 379c1c60d9
96 changed files with 1990 additions and 50291 deletions

8
source/src/App.test.tsx Normal file
View file

@ -0,0 +1,8 @@
import { render } from "@testing-library/react"
import App from "./App"
test("renders content", () => {
const { getByTestId } = render(<App />)
const content = getByTestId("content")
expect(content).toBeInTheDocument()
})