Initial commit
This commit is contained in:
commit
6e8391f7d1
77 changed files with 6391 additions and 0 deletions
16
fwt/components/Form.tsx
Normal file
16
fwt/components/Form.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import '../styles/Form.sass'
|
||||
import type { JSXElement } from 'solid-js'
|
||||
|
||||
interface Props {
|
||||
children: JSXElement
|
||||
}
|
||||
|
||||
export default (props: Props) => {
|
||||
return (
|
||||
<>
|
||||
<form method="post" enctype="application/x-www-form-urlencoded">
|
||||
{props.children}
|
||||
</form>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue