Skip to content

Commit

Permalink
Remove unused import (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
shuvroroy authored May 20, 2021
1 parent 322d60b commit 1755829
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion stubs/inertia-react/resources/js/Layouts/Authenticated.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ApplicationLogo from '../Components/ApplicationLogo';
import Dropdown from '../Components/Dropdown';
import NavLink from '../Components/NavLink';
import React, { useEffect, useState } from 'react';
import React, { useState } from 'react';
import ResponsiveNavLink from '../Components/ResponsiveNavLink';
import { InertiaLink } from '@inertiajs/inertia-react';

Expand Down
2 changes: 1 addition & 1 deletion stubs/inertia-react/resources/js/Layouts/Guest.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ApplicationLogo from '../Components/ApplicationLogo';
import React, { useEffect } from 'react';
import React from 'react';
import { InertiaLink } from '@inertiajs/inertia-react';

export default function Guest({ children }) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import Button from '@/Components/Button';
import Guest from '@/Layouts/Guest';
import Input from '@/Components/Input';
import Label from '@/Components/Label';
import React from 'react';
import ValidationErrors from '@/Components/ValidationErrors';
import { useForm } from '@inertiajs/inertia-react';
Expand Down

0 comments on commit 1755829

Please sign in to comment.