<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Prolific12</title>
    <description>The latest articles on DEV Community by Prolific12 (@prolificnicole).</description>
    <link>https://dev.to/prolificnicole</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1405409%2F69f72cac-27c7-4911-8a69-d64bb284e1f1.png</url>
      <title>DEV Community: Prolific12</title>
      <link>https://dev.to/prolificnicole</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prolificnicole"/>
    <language>en</language>
    <item>
      <title>How can I store something written in an input ?</title>
      <dc:creator>Prolific12</dc:creator>
      <pubDate>Wed, 10 Jul 2024 17:11:00 +0000</pubDate>
      <link>https://dev.to/prolificnicole/how-can-i-store-something-written-in-an-input--4nml</link>
      <guid>https://dev.to/prolificnicole/how-can-i-store-something-written-in-an-input--4nml</guid>
      <description>&lt;p&gt;How can I store information written in an input and make whatever is written in the input to show in the browser. These are the codes I wrote for the html and the typescript&lt;/p&gt;

&lt;p&gt;This is the html code&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;form action=""&amp;gt;
    &amp;lt;h1&amp;gt;Add User Information&amp;lt;/h1&amp;gt;
    &amp;lt;input name="userName" (input)="userDetails()" [(ngModel)]="userName" type="text"&amp;gt;&amp;lt;br&amp;gt;
    &amp;lt;input (input)="userDetails()" type="email" [(ngModel)]="email" name="email" placeholder="Email"&amp;gt;&amp;lt;br&amp;gt;
    &amp;lt;input (input)="userDetails()" type="text" [(ngModel)]="course" name="course" placeholder="Course"&amp;gt;&amp;lt;br&amp;gt;
    &amp;lt;input (input)="userDetails()" type="text" [(ngModel)]="location" name="Location" placeholder="Enter Your Location"&amp;gt;&amp;lt;br&amp;gt;
    &amp;lt;button (click)="addUser()"&amp;gt;Add User&amp;lt;/button&amp;gt;
    &amp;lt;div *ngFor = "let user of allUser"&amp;gt;
        &amp;lt;h3&amp;gt;{{user}}&amp;lt;/h3&amp;gt;
    &amp;lt;/div&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is the typescript code&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  public userName:string = "";
  public email:string = "";
  public course:string = "";
  public location:string = "";
  public allUser:Array&amp;lt;object&amp;gt; = [{userName: this.userName}, {email: this.email}, {course: this.course}, {location: this.location}];
  userDetails(){
    console.log(this.allUser);
  };
  addUser(){
    this.allUser.push(this.userArray);
    console.log(this.allUser);
  };
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I'm new to Angular, so i don't really understand it yet&lt;/p&gt;

</description>
      <category>angular</category>
      <category>help</category>
      <category>typescript</category>
    </item>
    <item>
      <title>Can Bootstrap be added to React?</title>
      <dc:creator>Prolific12</dc:creator>
      <pubDate>Fri, 05 Apr 2024 14:34:57 +0000</pubDate>
      <link>https://dev.to/prolificnicole/how-to-add-bootstrap-to-react-1g8f</link>
      <guid>https://dev.to/prolificnicole/how-to-add-bootstrap-to-react-1g8f</guid>
      <description>&lt;p&gt;How is bootstrap added to a react work. I have been wondering if bootstrap can be used in React &lt;/p&gt;

</description>
      <category>react</category>
      <category>bootstrap</category>
    </item>
  </channel>
</rss>
