com.zegreatrob.jsmints.plugins.minreact
Owner: Rob Murdock
This plugin will generate boilerplace related to working with React in Kotlin for function components and their props.
https://github.com/robertfmurdock/jsmints
Sources: https://github.com/robertfmurdock/jsmints
Version 4.5.4
4.5.4
Created 19 August 2023.
This plugin will generate boilerplace related to working with React in Kotlin for function components and their props.
Using the plugins DSL:
plugins {
id("com.zegreatrob.jsmints.plugins.minreact") version "4.5.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.zegreatrob.jsmints:plugins:4.5.4")
}
}
apply(plugin = "com.zegreatrob.jsmints.plugins.minreact")
Using the plugins DSL:
plugins {
id "com.zegreatrob.jsmints.plugins.minreact" version "4.5.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.zegreatrob.jsmints:plugins:4.5.4"
}
}
apply plugin: "com.zegreatrob.jsmints.plugins.minreact"