refactor(transformer): flatten file structure for React transform (#3604)

Purely moving files around to flatten folder structure. No substantive changes to the content of the files themselves.
This commit is contained in:
overlookmotel 2024-06-10 12:59:41 +00:00
parent e90e6a2a7c
commit a799225471
6 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,3 @@
mod diagnostics;
use std::{cell::Cell, rc::Rc};
use oxc_allocator::Vec;
@ -18,6 +16,7 @@ use crate::{
helpers::module_imports::NamedImport,
};
use super::diagnostics;
use super::utils::get_line_column;
pub use super::{
jsx_self::ReactJsxSelf,

View file

@ -1,3 +1,4 @@
mod diagnostics;
mod display_name;
mod jsx;
mod jsx_self;