Skip to content

Commit

Permalink
created a directory to hold HEAT UI components and moved Case Summary…
Browse files Browse the repository at this point in the history
… components to that directory
  • Loading branch information
jkoren committed Dec 27, 2023
1 parent 4a91fb7 commit e98a9ed
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Checkbox } from '../../../components/ui/checkbox.tsx'
import { Checkbox } from '../../../../components/ui/checkbox.tsx'

import {
Table,
Expand All @@ -7,7 +7,7 @@ import {
TableHead,
TableHeader,
TableRow,
} from '../../../components/ui/table.tsx'
} from '../../../../components/ui/table.tsx'

const months = [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Form } from '@remix-run/react'
import { Input } from '../input.tsx'
import { Label } from '../label.tsx'
import { Input } from '../../input.tsx'
import { Label } from '../../label.tsx'

export function HomeInformation() {
const name = 'Pietro Schirano'
Expand Down
8 changes: 4 additions & 4 deletions heat-stack/app/routes/_heat+/CaseSummary.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CurrentHeatingSystem } from '../../components/ui/CaseSummaryComponents/CurrentHeatingSystem.tsx'
import { EnergyUseHistory } from '../../components/ui/CaseSummaryComponents/EnergyUseHistory.tsx'
import { Graphs } from '../../components/ui/CaseSummaryComponents/Graphs.tsx'
import { HomeInformation } from '../../components/ui/CaseSummaryComponents/HomeInformation.tsx'
import { CurrentHeatingSystem } from '../../components/ui/heat/CaseSummaryComponents/CurrentHeatingSystem.tsx'
import { EnergyUseHistory } from '../../components/ui/heat/CaseSummaryComponents/EnergyUseHistory.tsx'
import { Graphs } from '../../components/ui/heat/CaseSummaryComponents/Graphs.tsx'
import { HomeInformation } from '../../components/ui/heat/CaseSummaryComponents/HomeInformation.tsx'

export default function CaseSummary() {
return (
Expand Down

0 comments on commit e98a9ed

Please sign in to comment.