Skip to content

Commit

Permalink
fix newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
doctorixx committed Jan 15, 2025
1 parent e765dcc commit b971aaf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions FRONTEND_V2/src/components/ProblemExample.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@ const ProblemExample = ({in_data, out_data}) => {
<button className="btn example__btn btn-sm btn-outline-secondary">Копировать</button>
</div>
<Card>
{in_data}
<div style={{whiteSpace: "break-spaces"}}>
{in_data}
</div>
</Card>
<h6>Выходные данные</h6>
<Card>
{out_data}
<div style={{whiteSpace: "break-spaces"}}>
{out_data}
</div>
</Card>
</div>
);
Expand Down

0 comments on commit b971aaf

Please sign in to comment.