-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated CLI and add extra dependencies to the tailwind
(#17)
* `Defined handler logic, CLI is not ready` * `Update readme, make manager.py readable` * `Basic SloDebugHandler feature` * `Extend test file` * `update example file` * `Updated CLI and add extra dependencies to the tailwind`
- Loading branch information
Showing
7 changed files
with
61 additions
and
19 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 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 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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
from tests.realistic_test_environment.components.example_component import MyComponent1, MyComponent3 | ||
from slobypy.react.component import * | ||
from slobypy.react.context import Context | ||
from slobypy.react import * | ||
|
||
class MyApp(AppComponent): | ||
def body(self): | ||
myContext = Context("Hello World") | ||
yield myContext(MyComponent3()) | ||
|
||
|
||
MyApp() | ||
css = SCSSClass( | ||
name="parent", | ||
register=True | ||
).child( | ||
SCSSClass( | ||
name="child1", | ||
display="block" | ||
)) | ||
|
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