Created
February 10, 2023 14:24
-
-
Save Djuki/1f91eb7731279a6778772a636a875fbb to your computer and use it in GitHub Desktop.
Load SF builder with tollbar
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Page Title</title> | |
<link rel="stylesheet" href="http://localhost:44486/build/css/main.css"> | |
<style> | |
#container { | |
display: flex; | |
flex-direction: column; | |
width: 100%; | |
} | |
.menu { | |
display: flex; | |
flex-direction: row; | |
} | |
.item { | |
border: 1px solid black; | |
border-radius: 3px; | |
padding: 3px; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="container"> | |
<div class="menu"> | |
<div class="item">One item</div> | |
<div class="item">Two item</div> | |
<div class="item">Next item</div> | |
<div class="item">More item</div> | |
<div class="item">Last item</div> | |
</div> | |
<div id="root"></div> | |
</div> | |
<script type="text/javascript" src="http://localhost:44486/build/index_bundle.js" async></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment