Search Gradle plugins

com.zegreatrob.jsmints.plugins.minreact

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 6.0.20

6.0.20

Created 21 June 2024.

This plugin will generate boilerplate related to working with React in Kotlin for function components and their props.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.zegreatrob.jsmints.plugins.minreact") version "6.0.20"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.zegreatrob.jsmints:plugins:6.0.20")
      }
    }
    
    apply(plugin = "com.zegreatrob.jsmints.plugins.minreact")
  • Applying plugins to all subprojects .