refactor(directory): add eslint

This commit is contained in:
Haoyu Xu
2023-03-02 23:53:46 -05:00
parent 1cbf3357d2
commit 5fc6f60b16
18 changed files with 1387 additions and 294 deletions

View File

@@ -1,3 +1,5 @@
import React from 'react';
import PropTypes from 'prop-types';
import './main_border.css';
export default function MainBorder(props) {
@@ -6,4 +8,7 @@ export default function MainBorder(props) {
{props.children}
</section>
)
}
}
MainBorder.propTypes = {
children: PropTypes.node,
};