-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.jsx
70 lines (44 loc) · 1.27 KB
/
App.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { useState } from 'react'
import reactLogo from './assets/react.svg'
import viteLogo from '/vite.svg'
import imagetest from './assets/imagetest.jpg'
import Spline from '@splinetool/react-spline';
import Card from './components/Card';
import './App.css'
import List from './components/list';
function App() {
return (
<div>
<main>
<div class="container">
<div class="left">
<div class="splinebox">
<Spline scene="https://prod.spline.design/Q8I9JCIYEvz24a3i/scene.splinecode" />
{/* <img src={imagetest} alt="img" /> */}
</div>
</div>
<div class="right">
<p>Selling thousands of dumplings</p>
</div>
</div>
<div>
<Card></Card>
<Card></Card>
</div>
<div >
<List name="salut" value={2}></List>
<List name="a2"></List>
<List name="a3"></List>
</div>
{/* <section id="leftbox">
<h2>Concepts!</h2>
</section>
<section id ="rightbox">
<img src={imagetest} alt="testimg" />
</section>
*/}
</main>
</div>
);
}
export default App