diff --git a/Cargo.lock b/Cargo.lock index 730e1f012916..9faed21d4063 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4213,6 +4213,7 @@ dependencies = [ "rspack", "rspack_core", "rspack_fs", + "rspack_regex", "serde_json", "tokio", ] diff --git a/biome.jsonc b/biome.jsonc index ed280b1b1b06..7aae855d5922 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -20,6 +20,7 @@ "packages/rspack-test-tools/tests/**/*", "packages/rspack-test-tools/src/helper/legacy/**/*", "tests/e2e/**/*", + "tasks/benchmark/benches/**/*", // --- ignore runtime code in browser "packages/rspack/hot", "packages/rspack/src/runtime/moduleFederationDefaultRuntime.js" @@ -63,6 +64,7 @@ "packages/rspack-test-tools/template", "packages/rspack-test-tools/src/helper/legacy/**/*", "packages/rspack/module.d.ts", + "tasks/benchmark/benches/**/*", // --- ignore runtime code in browser "packages/rspack/hot", "packages/rspack/src/runtime/moduleFederationDefaultRuntime.js" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6dece014b5d8..2bfebaa68573 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -715,6 +715,15 @@ importers: specifier: 8.3.0 version: 8.3.0 + tasks/benchmark/benches/modules_10000: + dependencies: + react: + specifier: ^19.0.0 + version: 19.0.0 + react-dom: + specifier: ^19.0.0 + version: 19.0.0(react@19.0.0) + tests/bench: dependencies: react: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index c35fa6fddc3a..3cc16c3013af 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -15,5 +15,6 @@ packages: - "tests/plugin-test" - "tests/webpack-cli-test" - "tests/bench" + - "tasks/benchmark/benches/**" # this following is used to test resolve in monorepo - "packages/rspack-test-tools/tests/normalCases/resolve/pnpm-workspace/packages/*" diff --git a/tasks/benchmark/Cargo.toml b/tasks/benchmark/Cargo.toml index 40fd079a511a..e244fa7dfa00 100644 --- a/tasks/benchmark/Cargo.toml +++ b/tasks/benchmark/Cargo.toml @@ -3,22 +3,22 @@ description = "rspack benchmark tooling" edition = "2021" license = "MIT" name = "rspack_benchmark" +publish = false repository = "https://github.com/web-infra-dev/rspack" version = "0.2.0" -publish = false [features] -default = [] codspeed = ["criterion2/codspeed"] [dependencies] -criterion2 = { default-features = false, version = "2.0.0", features = ["async_tokio"]} -rspack = { workspace = true } -rspack_fs = { workspace = true } -rspack_core = { workspace = true } -tokio = { workspace = true } -serde_json = { workspace = true } +criterion2 = { default-features = false, version = "2.0.0", features = ["async_tokio"] } +rspack = { workspace = true, features = ["full"] } +rspack_core = { workspace = true } +rspack_fs = { workspace = true } +rspack_regex = { workspace = true } +serde_json = { workspace = true } +tokio = { workspace = true } [[bench]] -name = "benches" harness = false +name = "benches" diff --git a/tasks/benchmark/benches/benches.rs b/tasks/benchmark/benches/benches.rs index 212ce329004f..d96851d7cf15 100644 --- a/tasks/benchmark/benches/benches.rs +++ b/tasks/benchmark/benches/benches.rs @@ -4,8 +4,10 @@ use basic::basic; use build_chunk_graph::chunk_graph; use criterion::criterion_main; +use modules_10000::modules_10000; mod basic; mod build_chunk_graph; +mod modules_10000; -criterion_main!(basic, chunk_graph); +criterion_main!(basic, chunk_graph, modules_10000); diff --git a/tasks/benchmark/benches/modules_10000.rs b/tasks/benchmark/benches/modules_10000.rs new file mode 100644 index 000000000000..83718b614d26 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000.rs @@ -0,0 +1,102 @@ +#![feature(trait_upcasting)] +#![allow(unused_attributes)] +#![allow(clippy::unwrap_used)] + +use std::{path::PathBuf, sync::Arc}; + +use criterion::criterion_group; +use rspack::builder::Builder as _; +use rspack_benchmark::Criterion; +use rspack_core::{ + Compiler, Experiments, Mode, ModuleOptions, ModuleRule, ModuleRuleEffect, ModuleRuleUse, + ModuleRuleUseLoader, Resolve, RuleSetCondition, +}; +use rspack_fs::{MemoryFileSystem, NativeFileSystem}; +use rspack_regex::RspackRegex; +use serde_json::json; +use tokio::runtime::Builder; + +async fn basic_compile(production: bool) { + let dir = std::env::var("CARGO_MANIFEST_DIR") + .map(PathBuf::from) + .or( + // This is a workaround for the issue where the CARGO_MANIFEST_DIR is not set in the test environment + std::env::var("CODSPEED_CARGO_WORKSPACE_ROOT") + .map(|workspace_root| PathBuf::from(workspace_root).join("tasks/benchmark")), + ) + .unwrap() + .join("benches/modules_10000"); + + let mut builder = Compiler::builder(); + builder + .context(dir.to_string_lossy().to_string()) + .entry("main", "./index.jsx") + .module(ModuleOptions::builder().rule(ModuleRule { + test: Some(RuleSetCondition::Regexp( + RspackRegex::new("\\.(j|t)s(x)?$").unwrap(), + )), + effect: ModuleRuleEffect { + r#use: ModuleRuleUse::Array(vec![ModuleRuleUseLoader { + loader: "builtin:swc-loader".to_string(), + options: Some(json!({ + "jsc": { + "parser": { + "syntax": "typescript", + "tsx": true, + }, + "transform": { + "react": { + "runtime": "automatic", + }, + }, + "externalHelpers": true, + }, + "env": { + "targets": "Chrome >= 48" + } + }).to_string()), + }]), + ..Default::default() + }, + ..Default::default() + })) + .cache(rspack_core::CacheOptions::Disabled) + .resolve(Resolve { + extensions: Some(vec!["...".to_string(), ".jsx".to_string()]), + ..Default::default() + }) + .experiments(Experiments::builder().css(true)) + .input_filesystem(Arc::new(NativeFileSystem::new(false))) + .output_filesystem(Arc::new(MemoryFileSystem::default())) + .enable_loader_swc(); + + if production { + builder.mode(Mode::Production); + } else { + builder.mode(Mode::Development); + } + + let mut compiler = builder.build(); + + compiler.run().await.unwrap(); + + assert!(compiler + .compilation + .get_errors() + .collect::>() + .is_empty()); +} + +pub fn modules_10000_benchmark(c: &mut Criterion) { + let rt = Builder::new_multi_thread().build().unwrap(); + + c.bench_function("10000_production", |b| { + b.to_async(&rt).iter(|| basic_compile(true)); + }); + + c.bench_function("10000_development", |b| { + b.to_async(&rt).iter(|| basic_compile(false)); + }); +} + +criterion_group!(modules_10000, modules_10000_benchmark); diff --git a/tasks/benchmark/benches/modules_10000/hmr.js b/tasks/benchmark/benches/modules_10000/hmr.js new file mode 100644 index 000000000000..09e45399ac7a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/hmr.js @@ -0,0 +1,11 @@ +module.exports = [ + { + rebuildChangeFile: "./src/f0.jsx", + generateContent: function (originalContent, runTimes) { + return ( + `import "data:text/javascript,export default ${runTimes}"; +` + originalContent + ); + } + } +]; diff --git a/tasks/benchmark/benches/modules_10000/index.html b/tasks/benchmark/benches/modules_10000/index.html new file mode 100644 index 000000000000..79f82481b6df --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/index.html @@ -0,0 +1,12 @@ + + + + + + + 10000 + + +
+ + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/index.jsx b/tasks/benchmark/benches/modules_10000/index.jsx new file mode 100644 index 000000000000..ff8d1a01b11c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/index.jsx @@ -0,0 +1,13 @@ + +import React, { useEffect } from "react"; +import ReactDom from "react-dom/client"; +import App1 from "./src/f0"; + +ReactDom.createRoot(document.getElementById("root")).render( + + + +); + + + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/package.json b/tasks/benchmark/benches/modules_10000/package.json new file mode 100644 index 000000000000..a109b58ff83c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/package.json @@ -0,0 +1,7 @@ +{ + "name": "10000", + "dependencies": { + "react": "^19.0.0", + "react-dom": "^19.0.0" + } +} diff --git a/tasks/benchmark/benches/modules_10000/rspack.config.js b/tasks/benchmark/benches/modules_10000/rspack.config.js new file mode 100644 index 000000000000..7ec6e38179a0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/rspack.config.js @@ -0,0 +1,74 @@ +const path = require("path"); +const rspack = require("@rspack/core"); +const ReactRefreshPlugin = require("@rspack/plugin-react-refresh"); + +const prod = process.env.NODE_ENV === "production"; +/** @type {import("@rspack/cli").Configuration} */ +module.exports = { + resolve: { + extensions: [".js", ".jsx"] + }, + entry: { main: "./index.jsx" }, + plugins: [ + new rspack.HtmlRspackPlugin({ + template: path.resolve(__dirname, "./index.html") + }), + !prod && new ReactRefreshPlugin() + ].filter(Boolean), + module: { + rules: [ + { + test: /\.(j|t)s$/, + exclude: [/[\\/]node_modules[\\/]/], + loader: "builtin:swc-loader", + options: { + sourceMap: true, + jsc: { + parser: { + syntax: "typescript" + }, + externalHelpers: true + }, + env: { + targets: "Chrome >= 48" + } + } + }, + { + test: /\.(j|t)sx$/, + loader: "builtin:swc-loader", + exclude: [/[\\/]node_modules[\\/]/], + options: { + sourceMap: true, + jsc: { + parser: { + syntax: "typescript", + tsx: true + }, + transform: { + react: { + runtime: "automatic", + development: !prod, + refresh: !prod + } + }, + externalHelpers: true + }, + env: { + targets: "Chrome >= 48" + } + } + } + ] + }, + optimization: { + splitChunks: { + chunks: "all", + cacheGroups: { + d1: { + test: /\/d1\// + } + } + } + } +}; diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f0.jsx new file mode 100644 index 000000000000..7517d90c0557 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f0.jsx @@ -0,0 +1,21 @@ + + +import React, {useEffect} from 'react' +import Icon from '@icon-park/react/es/all'; + + +function Navbar({ show }) { +useEffect(() => { + console.log(Date.now()); +}) +return ( +
+ 19 + {Date.now()} +
+) +} + +export default Navbar + + diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d1/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d2/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d3/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d4/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d5/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d6/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d7/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d8/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d0/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d1/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d2/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d3/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d4/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d5/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d6/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d7/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d8/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f0.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f0.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f1.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f1.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f2.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f2.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f3.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f3.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f4.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f4.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f5.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f5.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f6.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f6.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f7.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f7.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f8.jsx new file mode 100644 index 000000000000..0c0f73cf01f5 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/d9/f8.jsx @@ -0,0 +1,15 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + + function Navbar({ show }) { + return ( +
+ +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/d9/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/d9/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/d9/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/f0.jsx b/tasks/benchmark/benches/modules_10000/src/d0/f0.jsx new file mode 100644 index 000000000000..252fb1a70ae3 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/f0.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/f1.jsx b/tasks/benchmark/benches/modules_10000/src/d0/f1.jsx new file mode 100644 index 000000000000..49a29b39a4d9 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/f1.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d1/f0.jsx' +import Component__1 from './d1/f1.jsx' +import Component__2 from './d1/f2.jsx' +import Component__3 from './d1/f3.jsx' +import Component__4 from './d1/f4.jsx' +import Component__5 from './d1/f5.jsx' +import Component__6 from './d1/f6.jsx' +import Component__7 from './d1/f7.jsx' +import Component__8 from './d1/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/f2.jsx b/tasks/benchmark/benches/modules_10000/src/d0/f2.jsx new file mode 100644 index 000000000000..d0df49afcd9a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/f2.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d2/f0.jsx' +import Component__1 from './d2/f1.jsx' +import Component__2 from './d2/f2.jsx' +import Component__3 from './d2/f3.jsx' +import Component__4 from './d2/f4.jsx' +import Component__5 from './d2/f5.jsx' +import Component__6 from './d2/f6.jsx' +import Component__7 from './d2/f7.jsx' +import Component__8 from './d2/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/f3.jsx b/tasks/benchmark/benches/modules_10000/src/d0/f3.jsx new file mode 100644 index 000000000000..d604707caad2 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/f3.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d3/f0.jsx' +import Component__1 from './d3/f1.jsx' +import Component__2 from './d3/f2.jsx' +import Component__3 from './d3/f3.jsx' +import Component__4 from './d3/f4.jsx' +import Component__5 from './d3/f5.jsx' +import Component__6 from './d3/f6.jsx' +import Component__7 from './d3/f7.jsx' +import Component__8 from './d3/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/f4.jsx b/tasks/benchmark/benches/modules_10000/src/d0/f4.jsx new file mode 100644 index 000000000000..eaee1581eed1 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/f4.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d4/f0.jsx' +import Component__1 from './d4/f1.jsx' +import Component__2 from './d4/f2.jsx' +import Component__3 from './d4/f3.jsx' +import Component__4 from './d4/f4.jsx' +import Component__5 from './d4/f5.jsx' +import Component__6 from './d4/f6.jsx' +import Component__7 from './d4/f7.jsx' +import Component__8 from './d4/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/f5.jsx b/tasks/benchmark/benches/modules_10000/src/d0/f5.jsx new file mode 100644 index 000000000000..ae0962e6259c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/f5.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d5/f0.jsx' +import Component__1 from './d5/f1.jsx' +import Component__2 from './d5/f2.jsx' +import Component__3 from './d5/f3.jsx' +import Component__4 from './d5/f4.jsx' +import Component__5 from './d5/f5.jsx' +import Component__6 from './d5/f6.jsx' +import Component__7 from './d5/f7.jsx' +import Component__8 from './d5/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/f6.jsx b/tasks/benchmark/benches/modules_10000/src/d0/f6.jsx new file mode 100644 index 000000000000..e8c6a09e130c --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/f6.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d6/f0.jsx' +import Component__1 from './d6/f1.jsx' +import Component__2 from './d6/f2.jsx' +import Component__3 from './d6/f3.jsx' +import Component__4 from './d6/f4.jsx' +import Component__5 from './d6/f5.jsx' +import Component__6 from './d6/f6.jsx' +import Component__7 from './d6/f7.jsx' +import Component__8 from './d6/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/f7.jsx b/tasks/benchmark/benches/modules_10000/src/d0/f7.jsx new file mode 100644 index 000000000000..6364335410ff --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/f7.jsx @@ -0,0 +1,31 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d7/f0.jsx' +import Component__1 from './d7/f1.jsx' +import Component__2 from './d7/f2.jsx' +import Component__3 from './d7/f3.jsx' +import Component__4 from './d7/f4.jsx' +import Component__5 from './d7/f5.jsx' +import Component__6 from './d7/f6.jsx' +import Component__7 from './d7/f7.jsx' +import Component__8 from './d7/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/d0/f8.jsx b/tasks/benchmark/benches/modules_10000/src/d0/f8.jsx new file mode 100644 index 000000000000..d1a418a42fa0 --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/d0/f8.jsx @@ -0,0 +1,49 @@ + + import React from 'react' + import Icon from '@icon-park/react/es/all'; + + import Component__0 from './d8/f0.jsx' +import Component__1 from './d8/f1.jsx' +import Component__2 from './d8/f2.jsx' +import Component__3 from './d8/f3.jsx' +import Component__4 from './d8/f4.jsx' +import Component__5 from './d8/f5.jsx' +import Component__6 from './d8/f6.jsx' +import Component__7 from './d8/f7.jsx' +import Component__8 from './d8/f8.jsx' +import Component__9 from './d9/f0.jsx' +import Component__10 from './d9/f1.jsx' +import Component__11 from './d9/f2.jsx' +import Component__12 from './d9/f3.jsx' +import Component__13 from './d9/f4.jsx' +import Component__14 from './d9/f5.jsx' +import Component__15 from './d9/f6.jsx' +import Component__16 from './d9/f7.jsx' +import Component__17 from './d9/f8.jsx' + function Navbar({ show }) { + return ( +
+ + + + + + + + + + + + + + + + + + +
+ ) + } + + export default Navbar + \ No newline at end of file diff --git a/tasks/benchmark/benches/modules_10000/src/f0.jsx b/tasks/benchmark/benches/modules_10000/src/f0.jsx new file mode 100644 index 000000000000..881ec6ebe10a --- /dev/null +++ b/tasks/benchmark/benches/modules_10000/src/f0.jsx @@ -0,0 +1,33 @@ + +import React from 'react' +import Icon from '@icon-park/react/es/all'; + +import Component__0 from './d0/f0.jsx' +import Component__1 from './d0/f1.jsx' +import Component__2 from './d0/f2.jsx' +import Component__3 from './d0/f3.jsx' +import Component__4 from './d0/f4.jsx' +import Component__5 from './d0/f5.jsx' +import Component__6 from './d0/f6.jsx' +import Component__7 from './d0/f7.jsx' +import Component__8 from './d0/f8.jsx' +function Navbar({ show }) { +return ( +
+ 9 + + + + + + + + + +
+) +} + +export default Navbar + +