Examples
Custom component
Hello world- ☝️ This component is displayed using:
import Hello from "../../src/components/Hello";
<Hello name={"world"}/>
Live coding
Live Editor
Result
Loading...
Out of the box features
info
This is pretty cool
And some tabs!
- Example
- JavaScript
- Python
- Java
This is an example tag
```js
function helloWorld() {
console.log('Hello, world!');
}
```
```python
def hello_world():
print("Hello, world!")
```
```java
class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello, World");
}
}
```