Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions view/chaen/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
24 changes: 24 additions & 0 deletions view/chaen/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
15 changes: 15 additions & 0 deletions view/chaen/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## 이름
박채원

## 키워드
피카츄

## 소개

안녕하세요. 디스코드에서 피카츄 프사를 달고 있는 박채원이라고 합니다ㅎㅎ

현재 디자인학부 4학년이고 지금은 부트캠프 팀 프로젝트를 진행하면서 졸업 준비, 취업 준비를 하고 있습니다.

ui, ux, interaction 쪽에 강한 프론트엔드 개발자가 되는게 꿈입니다! ㅎㅎ

함께 으쌰으쌰하면서 친목도 쌓고, 더 좋은 오픈소스 만들어 나갔으면 좋겠습니다. 읽어주셔서 감사합니다!
Comment on lines +13 to +15
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

응원합니다!! 🚀🚀🚀🚀🚀

13 changes: 13 additions & 0 deletions view/chaen/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chaen</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading