mirror of
https://github.com/Tomato6966/investment-portfolio-simulator.git
synced 2025-04-04 14:50:35 +02:00
add money equalization for simplesavingsplan simulator
This commit is contained in:
parent
ee5f002271
commit
d13764652b
1 changed files with 16 additions and 13 deletions
|
@ -352,7 +352,8 @@ export const SavingsPlanSimulator = ({
|
|||
<div className="grid grid-cols-8 gap-4">
|
||||
<div className="flex flex-wrap gap-2 overflow-y-auto pr-2 col-span-7">
|
||||
{stocks.map(stock => (
|
||||
<div key={stock.id} className="flex items-center border border-gray-200 dark:border-slate-700 rounded-md p-2 bg-gray-100 dark:bg-slate-700/50">
|
||||
<div key={stock.id} className="flex flex-wrap items-center border border-gray-200 dark:border-slate-700 rounded-md p-2 bg-gray-100 dark:bg-slate-700/50">
|
||||
<div className='flex items-center justify-between w-full'>
|
||||
<div
|
||||
className="w-3 h-3 rounded-full mr-2"
|
||||
style={{ backgroundColor: stockColors[stock.id] }}
|
||||
|
@ -366,6 +367,8 @@ export const SavingsPlanSimulator = ({
|
|||
/>
|
||||
<span className="ml-1 dark:text-gray-400">%</span>
|
||||
</div>
|
||||
<div className='flex items-end justify-end w-full text-xs dark:text-gray-400 italic'>Equals: {totalAmount * (allocations[stock.id] || 0) / 100}€</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue