Skip to content

Commit

Permalink
Fixed ESLint indentation error in code-block.js and Add spacing
Browse files Browse the repository at this point in the history
Signed-off-by: r-kundan <[email protected]>
  • Loading branch information
r-kundan committed Jul 21, 2024
1 parent e507612 commit 9c44973
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ export const CodeBlock = ({ name, code }) => {

return (
<div className="show-code">
<input type="checkbox" name={name} id={name} onChange={onChange} />
<input
type="checkbox"
name={name}
id={name}
onChange={onChange}
/>
<label htmlFor={name} className="label">
Show Code
</label>
Expand All @@ -21,3 +26,4 @@ export const CodeBlock = ({ name, code }) => {
</div>
);
};

0 comments on commit 9c44973

Please sign in to comment.