build
This commit is contained in:
parent
bfec7b51b0
commit
7f1fa8499e
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
|
|
@ -0,0 +1,14 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Vite + React + TS</title>
|
||||||
|
<script type="module" crossorigin src="/assets/index-DNED-Jmy.js"></script>
|
||||||
|
<link rel="stylesheet" crossorigin href="/assets/index-D7MJkXHf.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="root"></div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
import { useState } from 'react';
|
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
'use client';
|
import { useState } from 'react';
|
||||||
|
|
||||||
import React, { useState } from 'react';
|
|
||||||
import Input from './input';
|
import Input from './input';
|
||||||
import Button from '../shared/button';
|
import Button from '../shared/button';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
import Link from 'next/link';
|
import { Link } from 'react-router-dom';
|
||||||
import React from 'react';
|
|
||||||
|
|
||||||
const LotList = () => {
|
const LotList = () => {
|
||||||
return (
|
return (
|
||||||
|
|
@ -18,7 +17,7 @@ const LotList = () => {
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col w-full">
|
<div className="flex flex-col w-full">
|
||||||
<Link href={`/lot/2342424`} className="flex p-5 w-full bg-fillTableRow">
|
<Link to={`/lot/2342424`} className="flex p-5 w-full bg-fillTableRow">
|
||||||
<span className="text-base text-textBlack font-semibold block max-w-[270px] w-full">
|
<span className="text-base text-textBlack font-semibold block max-w-[270px] w-full">
|
||||||
Лот №123456789
|
Лот №123456789
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import { v4 } from 'uuid';
|
import { v4 } from 'uuid';
|
||||||
import { useEffect, useState, useCallback } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import Button from '../shared/button';
|
import Button from '../shared/button';
|
||||||
import { LotData, Datum } from '../../models/lotData.model';
|
import { LotData, Datum } from '../../models/lotData.model';
|
||||||
import { dateSplitYear, dateSplitDays } from '../../utils/stringFormaters';
|
import { dateSplitYear, dateSplitDays } from '../../utils/stringFormaters';
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Dispatch, DispatchWithoutAction, SetStateAction, createContext } from 'react';
|
import { Dispatch, SetStateAction, createContext } from 'react';
|
||||||
|
|
||||||
interface LotContext {
|
interface LotContext {
|
||||||
LotNumberContext: {
|
LotNumberContext: {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import { StrictMode } from 'react';
|
import { StrictMode } from 'react';
|
||||||
import { createRoot } from 'react-dom/client';
|
import { createRoot } from 'react-dom/client';
|
||||||
import App from './App.tsx';
|
|
||||||
import './index.css';
|
import './index.css';
|
||||||
import { createBrowserRouter, RouterProvider } from 'react-router-dom';
|
import { createBrowserRouter, RouterProvider } from 'react-router-dom';
|
||||||
import LotNumber from './pages/LotNumber.tsx';
|
import LotNumber from './pages/LotNumber.tsx';
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"root":["./src/app.tsx","./src/main.tsx","./src/vite-env.d.ts","./src/components/auth/input.tsx","./src/components/auth/loginform.tsx","./src/components/shared/button.tsx","./src/components/shared/container.tsx","./src/components/shop/lotlist.tsx","./src/components/shop/shoptable.tsx","./src/context/lotcontext.ts","./src/models/lotdata.model.ts","./src/pages/auth.tsx","./src/pages/lotnumber.tsx","./src/providers/lotprovider.tsx","./src/utils/stringformaters.ts"],"version":"5.6.3"}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"root":["./vite.config.ts"],"version":"5.6.3"}
|
||||||
Loading…
Reference in New Issue