more deletes

This commit is contained in:
2024-12-18 16:26:44 -05:00
parent 336481f3ba
commit da18c5424a
8 changed files with 0 additions and 165 deletions

View File

@@ -1,8 +0,0 @@
const DSTPageHeader = props => {
return (
<div>{props.title}</div>
)
}
export default DSTPageHeader

View File

@@ -1,23 +0,0 @@
{
"name": "DSTPageHeader",
"version": "0.0.0",
"private": true,
"main": "./index",
"author": {
"name": "Don Strawsburg",
"email": "don@goforward.group",
"url": "https://goforward.group/"
},
"contributors": [
{
"name": "Don Strawsburg",
"email": "don@goforward.group",
"url": "https://goforward.group/"
},
{
"name": "Sean Strawsburg",
"email": "sean@goforward.group",
"url": "https://goforward.group/"
}
]
}

View File

@@ -1,13 +0,0 @@
import { ListItemText, Link } from "@mui/material";
import styles from './styles.module.css'
import { withStyles } from '@mui/material/styles';
import styled from '@emotion/styled'
import React from "react";
export default function FooterLink(props) {
return (
<ListItemText inset >
<Link href={props.href}><a className={styles.navLinks}>{props.title}</a></Link>
</ListItemText>
)
}

View File

@@ -1,23 +0,0 @@
{
"name": "footerlink",
"version": "0.0.0",
"private": true,
"main": "./index",
"author": {
"name": "Sean Strawsburg",
"email": "sean@goforward.group",
"url": "https://goforward.group/"
},
"contributors": [
{
"name": "Don Strawsburg",
"email": "don@goforward.group",
"url": "https://goforward.group/"
},
{
"name": "Sean Strawsburg",
"email": "sean@goforward.group",
"url": "https://goforward.group/"
}
]
}

View File

@@ -1,5 +0,0 @@
.navLinks:hover {
font-weight: bold;
text-decoration : none;
}

View File

@@ -1,23 +0,0 @@
{
"name": "groundzero",
"version": "0.0.0",
"private": true,
"main": "./index",
"author": {
"name": "Sean Strawsburg",
"email": "sean@goforward.group",
"url": "https://goforward.group/"
},
"contributors": [
{
"name": "Don Strawsburg",
"email": "don@goforward.group",
"url": "https://goforward.group/"
},
{
"name": "Sean Strawsburg",
"email": "sean@goforward.group",
"url": "https://goforward.group/"
}
]
}

View File

@@ -1,70 +0,0 @@
import React from 'react';
import { makeStyles } from '@mui/material/styles';
import InputLabel from '@mui/material/InputLabel';
import FormHelperText from '@mui/material/FormHelperText';
import FormControl from '@mui/material/FormControl';
import Select from '@mui/material/Select';
import NativeSelect from '@mui/material/NativeSelect';
import { useQuery, gql } from "@apollo/client";
const useStyles = makeStyles((theme) => ({
formControl: {
margin: theme.spacing(1),
minWidth: 120,
},
selectEmpty: {
marginTop: theme.spacing(2),
},
}));
const GET_STATES = gql`
{
states {
abbrev
name
}
}`
export default function StateNativeSelects() {
const classes = useStyles();
const [state, setState] = React.useState({
abbrev: '',
name: '',
});
const handleChange = (event) => {
const name = event.target.name;
setState({
...state,
[name]: event.target.value,
});
};
const { loading, error, data } = useQuery(GET_STATES);
if (loading) return <p>Loading...</p>;
if (error) return <p>Error :(</p>;
return (
<div>
<FormControl className={classes.formControl}>
<InputLabel htmlFor="state-native-simple">State</InputLabel>
<Select
native
value={state.abbrev}
onChange={handleChange}
inputProps={{
name: 'abbrev',
id: 'abbrev-native-simple',
}}
>
<option aria-label="None" value="" />
{data.states.map(({ abbrev, name }) => (
<option value={abbrev}>{name}</option>
))}
</Select>
</FormControl>
</div>
);
}