-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix indentation and reformat certain files
- Restore tab indentation on some files which were switched - Add `.prettierrc` for future files - Clean up exports for pages and components
- Loading branch information
Showing
13 changed files
with
1,717 additions
and
1,748 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,4 @@ | ||
{ | ||
"useTabs": true, | ||
"semi": true | ||
} |
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,8 +1,6 @@ | ||
import EmailForm from './EmailForm'; | ||
import Footer from './Footer'; | ||
import Nav from './Nav'; | ||
import Text from './Text'; | ||
import WordBreak from './WordBreak'; | ||
export { default as Banner } from './Banner'; | ||
|
||
export { EmailForm, Footer, Nav, Text, WordBreak }; | ||
export { default as EmailForm } from "./EmailForm"; | ||
export { default as Footer } from "./Footer"; | ||
export { default as Nav } from "./Nav"; | ||
export { default as Text } from "./Text"; | ||
export { default as WordBreak } from "./WordBreak"; | ||
export { default as Banner } from "./Banner"; |
Oops, something went wrong.