<?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: Abinash Burman</title>
    <description>The latest articles on DEV Community by Abinash Burman (@itsabinashb).</description>
    <link>https://dev.to/itsabinashb</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%2F1021149%2F01f7fb9b-68e9-4da5-a07e-9969c201fadb.jpg</url>
      <title>DEV Community: Abinash Burman</title>
      <link>https://dev.to/itsabinashb</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/itsabinashb"/>
    <language>en</language>
    <item>
      <title>Value is not showing during rendering.</title>
      <dc:creator>Abinash Burman</dc:creator>
      <pubDate>Sat, 06 May 2023 08:20:20 +0000</pubDate>
      <link>https://dev.to/itsabinashb/value-is-not-showing-during-rendering-2idb</link>
      <guid>https://dev.to/itsabinashb/value-is-not-showing-during-rendering-2idb</guid>
      <description>&lt;p&gt;This is my code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import React from 'react';

export default function Dashboard({time, currentEpoch, tvl, apr, stake, balance}) {


  return (
    &amp;lt;&amp;gt;
    &amp;lt;h2&amp;gt;Next epoch = {time}&amp;lt;/h2&amp;gt;
    &amp;lt;h2&amp;gt;Current epoch= {Number(currentEpoch)}&amp;lt;/h2&amp;gt;
    &amp;lt;h2&amp;gt;TVL = {tvl}&amp;lt;/h2&amp;gt;

      &amp;lt;h1&amp;gt;Boardroom&amp;lt;/h1&amp;gt;
      &amp;lt;h3&amp;gt;Stake bshare and earn bomb every epoch&amp;lt;/h3&amp;gt;
      &amp;lt;h3&amp;gt;daily returns: {apr}%&amp;lt;/h3&amp;gt;
      &amp;lt;h3&amp;gt;Your stake: {stake}&amp;lt;/h3&amp;gt;
      &amp;lt;h3&amp;gt;Earned: {balance}&amp;lt;/h3&amp;gt;



    &amp;lt;/&amp;gt;
  );
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;While rendering it is not showing its values. why? What are the solutions?&lt;/p&gt;

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