Nelmin
Nelmin
Explore posts from servers
GGermanSimRacing
Created by Nelmin on 3/24/2025 in #hardware-fragen
Anfänger Setup - Zu "High-Class" oder Perfekt?
Hey Leute, ich wollte demnächst mit dem Sim Racing anfangen und habe vor mir ein Setup zu holen, aber ich bin mir unsicher ob das nicht doch zu teuer für den Anfang ist. Ich würde gerne mal eure Meinung hören, um zu wissen was ich verbessern kann. https://drive.proton.me/urls/QNZGSB82AM#QOj8U2n6tasr Danke im Vorraus!
50 replies
CC#
Created by Nelmin on 1/24/2024 in #help
Console App listen for Key Combinations
Hey guys, I wanted to know if there is any library that lets me listen to keybinds while using Sharprompt. Thanks in advance!
1 replies
SSolidJS
Created by Nelmin on 2/23/2023 in #support
Components Props and Text
Hey mates! I need to know 2 things
1. How can I add required props? 2. How can I add text to a Component like in the Example?
example:
//Component
export default function Button(props: ButtonProps) {
return (
<>
<button class={getStyle(props.type)}></button>
</>
);
}

//Site
<Button>Test</Button>
//Component
export default function Button(props: ButtonProps) {
return (
<>
<button class={getStyle(props.type)}></button>
</>
);
}

//Site
<Button>Test</Button>
9 replies