Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 624730e

Browse files
committedMay 3, 2024
playground-begin
1 parent 04c9694 commit 624730e

20 files changed

+43609
-0
lines changed
 

‎.env.example

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
CC_SENTRY_DNS=
3+
CC_FORCE_MEMORY_HISTORY=
4+
CC_APP_NAME=react-declarative
5+
CC_POCKETBASE_URL=http://127.0.0.1:8090

‎.gitignore

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# dependencies
2+
/node_modules
3+
/.pnp
4+
.pnp.js
5+
6+
# testing
7+
/coverage
8+
9+
# enviroment
10+
.env
11+
12+
# production
13+
/build
14+
15+
# misc
16+
.DS_Store
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
26+
node_modules/
27+
/test-results/
28+
/playwright-report/
29+
/playwright/.cache/
30+

‎index.html

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<!DOCTYPE html>
2+
<html lang="en" translate="no">
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta name="theme-color" content="#000000" />
7+
<title>react-declarative</title>
8+
<link rel="preconnect" href="https://fonts.googleapis.com" />
9+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
10+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, minimal-ui">
11+
<link
12+
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
13+
rel="stylesheet" />
14+
<style>
15+
* {
16+
font-family: "Roboto", sans-serif !important;
17+
}
18+
19+
html,
20+
body {
21+
margin: 0;
22+
padding: 0;
23+
overflow: hidden;
24+
}
25+
26+
body {
27+
-ms-overflow-style: none;
28+
scrollbar-width: none;
29+
}
30+
31+
input::-webkit-outer-spin-button,
32+
input::-webkit-inner-spin-button {
33+
-webkit-appearance: none;
34+
margin: 0;
35+
}
36+
37+
input[type=number] {
38+
-moz-appearance: textfield;
39+
}
40+
41+
.split-horizontal {
42+
display: flex;
43+
width: 100%;
44+
height: 100%;
45+
}
46+
47+
.split-vertical {
48+
display: flex;
49+
flex-direction: column;
50+
height: 100%;
51+
}
52+
53+
.gutter {
54+
flex-basis: 5px !important;
55+
flex-shrink: 0;
56+
flex-grow: 0;
57+
background: #424242;
58+
}
59+
60+
.gutter-horizontal {
61+
cursor: col-resize;
62+
}
63+
64+
.gutter-vertical {
65+
cursor: row-resize;
66+
}
67+
68+
.pane {
69+
flex-shrink: 1;
70+
flex-grow: 1;
71+
overflow: hidden;
72+
position: relative;
73+
}
74+
</style>
75+
</head>
76+
77+
<body>
78+
<noscript>You need to enable JavaScript to run this app.</noscript>
79+
<div id="root">
80+
</div>
81+
<script type="module" src="/src/index.tsx"></script>
82+
</body>
83+
84+
</html>

0 commit comments

Comments
 (0)