Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSonOfThomp committed Aug 30, 2023
1 parent b75e064 commit 4b95af6
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 29 deletions.
7 changes: 2 additions & 5 deletions packages/date-picker/src/CalendarCell/CalendarCell.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@

import React from 'react';
import { render } from '@testing-library/react';

import { CalendarCell } from '.';

describe('packages/calendar-cell', () => {
test('condition', () => {

})
})
test('condition', () => {});
});
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import { css } from '@leafygreen-ui/emotion';

export const baseStyles = css``;
1 change: 0 additions & 1 deletion packages/date-picker/src/CalendarCell/CalendarCell.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import React from 'react';

// TODO: forwardRef
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export interface CalendarCellProps {}
export interface CalendarCellProps {}
7 changes: 2 additions & 5 deletions packages/date-picker/src/CalendarGrid/CalendarGrid.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@

import React from 'react';
import { render } from '@testing-library/react';

import { CalendarGrid } from '.';

describe('packages/calendar-grid', () => {
test('condition', () => {

})
})
test('condition', () => {});
});
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import { css } from '@leafygreen-ui/emotion';

export const baseStyles = css``;
1 change: 0 additions & 1 deletion packages/date-picker/src/CalendarGrid/CalendarGrid.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import React from 'react';

// TODO: forwardRef
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export interface CalendarGridProps {}
export interface CalendarGridProps {}
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@

import React from 'react';
import { render } from '@testing-library/react';

import { DatePickerInput } from '.';

describe('packages/date-picker-input', () => {
test('condition', () => {

})
})
test('condition', () => {});
});
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import { css } from '@leafygreen-ui/emotion';

export const baseStyles = css``;
3 changes: 1 addition & 2 deletions packages/date-picker/src/DatePicker/DatePickerInput/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@

export { DatePickerInput } from './DatePickerInput';
export { DatePickerInput } from './DatePickerInput';
export { DatePickerInputProps } from './DatePickerInput.types';
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@

import React from 'react';
import { render } from '@testing-library/react';

import { DatePickerContext } from '.';

describe('packages/date-picker-context', () => {
test('condition', () => {

})
})
test('condition', () => {});
});

0 comments on commit 4b95af6

Please sign in to comment.