This file contains hidden or 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
package com.excellentwebcheck.x.config | |
import com.google.common.reflect.ClassPath | |
import org.springframework.aot.hint.* | |
import org.springframework.context.annotation.Configuration | |
import org.springframework.context.annotation.ImportRuntimeHints | |
@Configuration | |
@ImportRuntimeHints(NativeHints.Companion.NativeHintsRegistrar::class) | |
class NativeHints { |
This file contains hidden or 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
import React, { useState } from 'react' | |
const bind = (value: string, set: (val: string) => void): Partial<React.InputHTMLAttributes<HTMLInputElement>> => ({ | |
value, | |
onChange: (val) => set(val.currentTarget.value) | |
}) | |
export const MyComponent = () => { | |
const [name, setName] = useState<string>('') | |
return ( |
This file contains hidden or 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
{ | |
"defaultAction": "SCMP_ACT_LOG" | |
} |
This file contains hidden or 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
async | |
autocomplete | |
autofocus | |
autoplay | |
border | |
challenge | |
checked | |
compact | |
contenteditable | |
controls |