Skip to content

Commit

Permalink
refactor: update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Makowski committed Oct 25, 2024
1 parent 9375e4c commit a7395a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
8 changes: 4 additions & 4 deletions apps/common-app/src/examples/Oscillator/Oscillator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { useRef, useState, useEffect, FC } from 'react';
import { StyleSheet, Text, View, Pressable } from 'react-native';
import {
AudioContext,
WaveType,
type GainNode,
type OscillatorNode,
type StereoPannerNode,
GainNode,
OscillatorNode,
StereoPannerNode,
type WaveType,
} from 'react-native-audio-api';

import { Container, Slider, Spacer, Button } from '../../components';
Expand Down
6 changes: 1 addition & 5 deletions apps/common-app/src/examples/Piano/PianoNote.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
import type {
GainNode,
AudioContext,
OscillatorNode,
} from 'react-native-audio-api';
import { GainNode, AudioContext, OscillatorNode } from 'react-native-audio-api';

import { Key } from './utils';

Expand Down

0 comments on commit a7395a8

Please sign in to comment.