-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
16,990 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: DominusKelvin | ||
patreon: dominuskelvin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
### Description | ||
|
||
... | ||
|
||
### Current behavior | ||
|
||
... | ||
|
||
### Expected behavior | ||
|
||
... | ||
|
||
> Replace space in square bracket with `x` e.g `[x]` | ||
[ ] I have checked and this issue does not exist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
### What issue did you solve? | ||
|
||
The **issue** number: | ||
|
||
The title: | ||
|
||
### Summary | ||
> Summarize the changes that have been made, provide screenshots if possible or recording | ||
... | ||
|
||
### Checklist | ||
> Replace space in square bracket with an `x` e.g `[x]` | ||
* [ ] No error in the console | ||
* [ ] My code was tested before commit | ||
* [ ] My repo was up to date before working on this commit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
import React from 'react' | ||
import { render } from 'react-dom' | ||
import { createInertiaApp } from '@inertiajs/inertia-react' | ||
import { InertiaProgress } from '@inertiajs/progress' | ||
import { createInertiaApp } from '@inertiajs/react' | ||
import { createRoot } from 'react-dom/client' | ||
import '~/css/main.css' | ||
|
||
InertiaProgress.init() | ||
|
||
createInertiaApp({ | ||
resolve: (name) => require(`./pages/${name}`), | ||
setup({ el, App, props }) { | ||
render(<App {...props} />, el) | ||
createRoot(el).render(<App {...props} />) | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
{ | ||
"include": ["api/**/*", "assets/js/**/*", "types/index.d.ts"], | ||
|
||
"compilerOptions": { | ||
"checkJs": true | ||
"types": ["node"], | ||
"typeRoots": ["./types", "./node_modules/@types"], | ||
"lib": ["es2016"], | ||
// silences wrong TS error, we don't compile, we only typecheck | ||
"outDir": "./irrelevant/unused", | ||
"allowJs": true, | ||
"checkJs": true, | ||
"jsx": "react-jsx", | ||
"noImplicitThis": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noEmitOnError": true, | ||
"noErrorTruncation": true, | ||
"baseUrl": ".", | ||
"paths": { | ||
"@/*": ["assets/js/*"] | ||
} | ||
} | ||
} |
Oops, something went wrong.