diff --git a/example/src/App.vue b/example/src/App.vue
index a0b9998bcde9f36f4b634b246cbe4efb7d8b780c..aa27f66e1eae24a4ff478545d559b0465fe5f325 100644
--- a/example/src/App.vue
+++ b/example/src/App.vue
@@ -1,12 +1,10 @@
 <script setup>
 import Grid from "../../src/Grid.vue";
-import DragContainer from "../../src/DragContainer.vue";
 </script>
 
 <template>
   <div id="app">
     <Grid :rows="10" :cols="5"></Grid>
-    <DragContainer></DragContainer>
   </div>
 </template>