mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-27 11:01:38 -04:00
12 lines
184 B
JavaScript
12 lines
184 B
JavaScript
import React from 'react';
|
|
|
|
function ButtonSpacer() {
|
|
return (
|
|
<div className='button-spacer' />
|
|
);
|
|
}
|
|
|
|
ButtonSpacer.displayName = 'ButtonSpacer';
|
|
|
|
export default ButtonSpacer;
|