feat(sass template): change header text

This commit is contained in:
Arnau Gómez
2022-01-09 14:23:42 +01:00
parent 62fb3be1aa
commit 99ee4b2617
2 changed files with 1 additions and 71 deletions
-70
View File
@@ -1,70 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="1efac7c3-cc10-4507-9551-f59a394e550e" name="Changes" comment="">
<change afterPath="$PROJECT_DIR$/ts-sass/src/App.scss" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="GoLibraries">
<option name="indexEntireGoPath" value="false" />
</component>
<component name="MacroExpansionManager">
<option name="directoryName" value="sx5c4rib" />
</component>
<component name="ProjectId" id="23ShJXYgbJnQDsvh98fItVI8VSb" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent">
<property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
<property name="WebServerToolWindowFactoryState" value="false" />
<property name="go.formatter.settings.were.checked" value="true" />
<property name="go.import.settings.migrated" value="true" />
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
<property name="nodejs_package_manager_path" value="pnpm" />
<property name="ts.external.directory.path" value="$APPLICATION_HOME_DIR$/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external" />
</component>
<component name="RecentsManager">
<key name="CopyFile.RECENT_KEYS">
<recent name="$PROJECT_DIR$" />
</key>
</component>
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="1efac7c3-cc10-4507-9551-f59a394e550e" name="Changes" comment="" />
<created>1641733324662</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1641733324662</updated>
<workItem from="1641733328458" duration="675000" />
</task>
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" />
</component>
<component name="Vcs.Log.Tabs.Properties">
<option name="TAB_STATES">
<map>
<entry key="MAIN">
<value>
<State />
</value>
</entry>
</map>
</option>
</component>
<component name="VgoProject">
<integration-enabled>true</integration-enabled>
</component>
</project>
+1 -1
View File
@@ -2,7 +2,7 @@ import type { Component } from 'solid-js';
import './App.scss';
const App: Component = () => {
return <h1 class="header">Hello world!</h1>;
return <h1 class="header">Hello Sass!</h1>;
};
export default App;