create-alistt69-kit 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-alistt69-kit",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Opinionated React + TypeScript + Webpack project generator by alistt69",
5
5
  "keywords": [
6
6
  "create",
@@ -1,9 +1,12 @@
1
1
  import { RouterProvider } from 'react-router-dom';
2
2
  import { appRouter } from './providers/router/config/router';
3
+ import styles from './styles.module.scss';
3
4
 
4
5
  function App() {
5
6
  return (
6
- <RouterProvider router={appRouter} />
7
+ <div className={styles.app_wrapper}>
8
+ <RouterProvider router={appRouter} />
9
+ </div>
7
10
  );
8
11
  }
9
12
 
@@ -1,6 +1,10 @@
1
+ import styles from './styles.module.scss';
2
+
1
3
  function App() {
2
4
  return (
3
- <h1>alistt69</h1>
5
+ <div className={styles.app_wrapper}>
6
+ alistt69
7
+ </div>
4
8
  )
5
9
  }
6
10
 
@@ -0,0 +1,3 @@
1
+ .app_wrapper {
2
+
3
+ }
@@ -0,0 +1,16 @@
1
+ declare module '*.module.scss' {
2
+ type IClassNames = Record<string, string>;
3
+
4
+ const classNames: IClassNames;
5
+ export = classNames;
6
+ }
7
+
8
+ declare module '*.png';
9
+ declare module '*.jpg';
10
+ declare module '*.jpeg';
11
+ declare module '*.svg' {
12
+ import { FC, SVGProps } from 'react';
13
+
14
+ const SVG: FC<SVGProps<SVGSVGElement>>;
15
+ export default SVG;
16
+ }