I am trying to create a form where users can input extra information by adding new rows, but I am struggling with generating the first row
<div ng-repeat="row in rows">
<input type="text" placeholder="name"><input type="tel" placeholder="tel">
</div>
$scope.rows = {
'1':1
};
}