DEV Community

Abinash Burman
Abinash Burman

Posted on

Value is not showing during rendering.

This is my code:

import React from 'react';

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


  return (
    <>
    <h2>Next epoch = {time}</h2>
    <h2>Current epoch= {Number(currentEpoch)}</h2>
    <h2>TVL = {tvl}</h2>

      <h1>Boardroom</h1>
      <h3>Stake bshare and earn bomb every epoch</h3>
      <h3>daily returns: {apr}%</h3>
      <h3>Your stake: {stake}</h3>
      <h3>Earned: {balance}</h3>



    </>
  );
}
Enter fullscreen mode Exit fullscreen mode

While rendering it is not showing its values. why? What are the solutions?

Top comments (0)