burkeholland / simple-react-snippets

Simple React Snippets for VS Code that you will actually use
206 stars 84 forks source link

Issue Resolved #66

Closed AminGholizad closed 2 years ago

AminGholizad commented 3 years ago

Issue 65 Resolved cc snippet changed to:

      "class $1 extends Component {",
      "\tstate = { $2 } ",
      "\trender() { ",
      "\t\treturn ($0);",
      "\t}",
      "}",
      " ",
      "export default $1;"

and ccc changed to:

      "class $1 extends Component {",
      "\tconstructor(props) {",
      "\t\tsuper(props);",
      "\t}",
      "\tstate = { $2 }",
      "\trender() { ",
      "\t\treturn ( $0 );",
      "\t}",
      "}",
      " ",
      "export default $1;"