mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
fix eslint:recommended errors
this should find most of the imports
This commit is contained in:
parent
ad730d806b
commit
640f555b8a
61 changed files with 269 additions and 44 deletions
|
@ -1,3 +1,6 @@
|
|||
import Dish from './Dish';
|
||||
import Recipe from './Recipe';
|
||||
|
||||
/**
|
||||
* The main controller for CyberChef.
|
||||
*
|
||||
|
@ -7,9 +10,9 @@
|
|||
*
|
||||
* @class
|
||||
*/
|
||||
const Chef = function () {
|
||||
export default function Chef() {
|
||||
this.dish = new Dish();
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue