-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from shefing/Initialize_line
Initialize line
- Loading branch information
Showing
9 changed files
with
66 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import urlImg from "../../src/img/image.png"; | ||
|
||
const GrassImg = () => { | ||
return ( | ||
<div className="absolute w-full bottom-0 left-0"> | ||
<img src={urlImg} /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default GrassImg; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,24 @@ | ||
const Toolbar = () => {}; | ||
import { Smile } from "lucide-react"; | ||
import LineDefinition from "./toolbar/LineDefinition"; | ||
|
||
const Toolbar = () => { | ||
return ( | ||
<div className="flex justify-between bg-sky-100"> | ||
<div className="flex-none"> | ||
<Smile className="m-4 h-4 w-4" /> | ||
</div> | ||
<div className="flex "> | ||
<Smile className="m-4 h-4 w-4" /> | ||
<Smile className="m-4 h-4 w-4" /> | ||
<Smile className="m-4 h-4 w-4" /> | ||
<Smile className="m-4 h-4 w-4" /> | ||
<Smile className="m-4 h-4 w-4" /> | ||
<Smile className="m-4 h-4 w-4" /> | ||
</div> | ||
<div className="flex-none"> | ||
<LineDefinition /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
export default Toolbar; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { Button } from "../ui/button"; | ||
|
||
const LineDefinition = () => { | ||
return ( | ||
<> | ||
<Button className={`m-1 text-xl text-sky-600 font-bold `} variant="ghost"> | ||
<span className="mr-3">▼</span> הגדרת הישר | ||
</Button> | ||
</> | ||
); | ||
}; | ||
|
||
export default LineDefinition; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,9 @@ export default defineConfig({ | |
alias: { | ||
"@": path.resolve(__dirname, "./src"), | ||
}, | ||
|
||
}, | ||
server: { | ||
port: 3000, | ||
}, | ||
}) |