score:0

Accepted answer

your render() function should be inside a class called wetterwidget. like this:

class wetterwidget extends component {
render() {
    return (
      <container>
        <row>
          <col>1 of 2</col>
          <col>2 of 2</col>
        </row>
        <row>
          <col>1 of 3</col>
          <col>2 of 3</col>
          <col>3 of 3</col>
        </row>
      </container>
    );
  }
}

Related Query

More Query from same tag