Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
XiangpengHao committed Nov 7, 2024
1 parent bf08561 commit 390f6c7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/info_section.rs → src/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub fn InfoSection(parquet_info: super::ParquetInfo) -> impl IntoView {
</div>
</div>

<super::row_group_section::RowGroupSection
<super::row_group::RowGroupSection
parquet_info=parquet_info.clone()
selected_row_group=selected_row_group
set_selected_row_group=set_selected_row_group
Expand Down
10 changes: 5 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
mod schema_section;
use schema_section::SchemaSection;
mod schema;
use schema::SchemaSection;

mod row_group_section;
mod row_group;

mod info_section;
use info_section::InfoSection;
mod info;
use info::InfoSection;

use std::sync::Arc;

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 390f6c7

Please sign in to comment.